| TaskId Constructor (TaskId, String, Int32) |
Initializes a new instance of the
TaskId class with the specified parent task, stage ID and task number.
Namespace:
Ookii.Jumbo.Jet
Assembly:
Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax public TaskId(
TaskId parentTaskId,
string stageId,
int taskNumber
)
Public Sub New (
parentTaskId As TaskId,
stageId As String,
taskNumber As Integer
)
public:
TaskId(
TaskId^ parentTaskId,
String^ stageId,
int taskNumber
)
new :
parentTaskId : TaskId *
stageId : string *
taskNumber : int -> TaskId
Parameters
- parentTaskId
- Type: Ookii.Jumbo.JetTaskId
The ID of the the parent task; may be . - stageId
- Type: SystemString
The ID of the stage that this task belongs to. - taskNumber
- Type: SystemInt32
The task number.
See Also