Gets a value indicating whether the task is critical or not. A task is critical if it would generate delays in the project in case that it wouldn't be finished on time.

Namespace:  DlhSoft.Windows.Data
Assembly:  DlhSoft.ProjectData.Core (in DlhSoft.ProjectData.Core.dll)

Syntax

C#
public bool IsCritical(
	TimeSpan criticalDelay
)
Visual Basic (Declaration)
Public Function IsCritical ( _
	criticalDelay As TimeSpan _
) As Boolean

Parameters

criticalDelay
Type: System..::.TimeSpan
The minimum time interval that needs to exist between dependent tasks to avoid considering the critical state.

Return Value

A value indicating whether the task is critical or not.

See Also