Project.UpdateProjectStageStatus method
Updates the status of a workflow stage for the project.
Namespace: Microsoft.ProjectServer.Client
Assembly: Microsoft.ProjectServer.Client (in Microsoft.ProjectServer.Client.dll)
Syntax
'Declaration
<RemoteAttribute> _
Public Sub UpdateProjectStageStatus ( _
stage As Stage, _
statusInformation As String, _
stageStatusValue As UpdateProjectStageStatusFieldValue, _
append As Boolean _
)
'Usage
Dim instance As Project
Dim stage As Stage
Dim statusInformation As String
Dim stageStatusValue As UpdateProjectStageStatusFieldValue
Dim append As Boolean
instance.UpdateProjectStageStatus(stage, _
statusInformation, stageStatusValue, _
append)
[RemoteAttribute]
public void UpdateProjectStageStatus(
Stage stage,
string statusInformation,
UpdateProjectStageStatusFieldValue stageStatusValue,
bool append
)
Parameters
stage
Type: Microsoft.ProjectServer.Client.StageThe workflow stage to be updated.
statusInformation
Type: System.StringThe status message.
stageStatusValue
Type: Microsoft.ProjectServer.Client.UpdateProjectStageStatusFieldValueAn enumeration constant that indicates the stage status.
append
Type: System.BooleanTrue if the status message is appended to the current stage status; False if the status message overwrites the current status.