WorkflowDataSet.WorkflowStatusRow.SUBMITTED_DATE property
Gets or sets the DateTime value that indicates when the project was last submitted by the RunProjectWorkflow method.
Namespace: WebSvcWorkflow
Assembly: ProjectServerServices (in ProjectServerServices.dll)
Syntax
'Declaration
Public Property SUBMITTED_DATE As DateTime
Get
Set
'Usage
Dim instance As WorkflowDataSet.WorkflowStatusRow
Dim value As DateTime
value = instance.SUBMITTED_DATE
instance.SUBMITTED_DATE = value
public DateTime SUBMITTED_DATE { get; set; }
Property value
Type: System.DateTime
The date and time when a project was last submitted.
Remarks
When compared with the WORKFLOW_MOD_DATE, one can be determine if the project is currently being processed by the workflow, or if it is still being queued.
Unlike with most columns and properties, in the case of SUBMITTED_DATE, the column name and the property name are the same.
See also
Reference
WorkflowDataSet.WorkflowStatusRow class