Version

TaskDependency Class

Defines a link between two tasks, whereby the progress of one task is dependent on the progress of another.
Syntax
'Declaration
 
Public Class TaskDependency 
   Inherits Infragistics.Shared.SubObjectBase
public class TaskDependency : Infragistics.Shared.SubObjectBase 
Remarks

The Task that owns the Dependencies collection to which this instance belongs is the "dependent" task. The Task instance returned from the Predecessor property is the task on which that task depends. The DependencyType property defines the nature of the dependency. For example, assume there are two tasks, 'A' and 'B', and that a dependency is created for task 'B' such that it cannot begin until task 'A' is completed. A TaskDependency instance would be added to the Dependencies collection of task 'B', with the Predecessor property of that instance returning a reference to task 'A', and the TaskDependency property returning a value of 'FinishToStart'.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also