[]
Specifies the type of dependency between tasks.
public enum PredecessorType
Name | Description |
---|---|
FinishToFinish | Indicates that the dependent task can finish only after the parent task has finished. |
FinishToStart | Indicates that the dependent task can't start until the parent task finishes. |
StartToFinish | Indicates that the dependent task can finish only after the parent task has started. |
StartToStart | Indicates that the dependent task can start only after the parent task has started. |