TaskIdRange Class

Definition

A range of Task IDs that a Task can depend on. All Tasks with IDs in the range must complete successfully before the dependent Task can be scheduled.

public class TaskIdRange
type TaskIdRange = class
Public Class TaskIdRange
Inheritance
TaskIdRange

Remarks

The start and end of the range are inclusive. For example, if a range has start 9 and end 12, then it represents Tasks '9', '10', '11' and '12'.

Constructors

TaskIdRange()

Initializes a new instance of the TaskIdRange class.

TaskIdRange(Int32, Int32)

Initializes a new instance of the TaskIdRange class.

Properties

End

Gets or sets the last Task ID in the range.

Start

Gets or sets the first Task ID in the range.

Applies to