WorkflowActivities.UpdateDateTimeProperty method
Updates the value of of the specified project property by using the SharePoint SPFieldType.DateTime type.
Namespace: Microsoft.ProjectServer.Client
Assembly: Microsoft.ProjectServer.Client (in Microsoft.ProjectServer.Client.dll)
Syntax
'Declaration
<RemoteAttribute> _
Public Sub UpdateDateTimeProperty ( _
projectId As Guid, _
propertyId As String, _
value As DateTime _
)
'Usage
Dim instance As WorkflowActivities
Dim projectId As Guid
Dim propertyId As String
Dim value As DateTime
instance.UpdateDateTimeProperty(projectId, _
propertyId, value)
[RemoteAttribute]
public void UpdateDateTimeProperty(
Guid projectId,
string propertyId,
DateTime value
)
Parameters
projectId
Type: System.GuidThe GUID of the project.
propertyId
Type: System.StringThe GUID of the property to read.
value
Type: System.DateTimeThe DateTime value to update.
Remarks
A Project Server workflow can call the UpdateDateTimeProperty method. Valid propertyId values can be retrieved from the WorkflowDesigner.Fields collection by using the WorkflowDesignerField.Id property. The UpdateDateTimeProperty method works only with fields where the WorkflowDesignerField.SPFieldType property is SPFieldType.DateTime.