WorkflowData.SetPendingWorkflowData Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SetPendingWorkflowData(String) |
Sets the pending workflow. |
SetPendingWorkflowData(String, Boolean) |
Sets the pending workflow. |
SetPendingWorkflowData(String)
Sets the pending workflow.
public:
bool SetPendingWorkflowData(System::String ^ pendingWorkflowData);
public bool SetPendingWorkflowData (string pendingWorkflowData);
member this.SetPendingWorkflowData : string -> bool
Public Function SetPendingWorkflowData (pendingWorkflowData As String) As Boolean
Parameters
- pendingWorkflowData
- String
Specifies the pending workflow xml
Returns
true
if success otherwise, false
Applies to
SetPendingWorkflowData(String, Boolean)
Sets the pending workflow.
public:
bool SetPendingWorkflowData(System::String ^ pendingWorkflowData, bool showError);
public bool SetPendingWorkflowData (string pendingWorkflowData, bool showError);
member this.SetPendingWorkflowData : string * bool -> bool
Public Function SetPendingWorkflowData (pendingWorkflowData As String, showError As Boolean) As Boolean
Parameters
- pendingWorkflowData
- String
Specifies the pending workflow xml
- showError
- Boolean
True
if errors are to be displayed, otherwise false
.
Returns
True
if the workflow is set, otherwise false
.
Remarks
This function used to be in in the Microsoft.Uii.Samples.HostedControlInterfaces as part of WorkflowData class. In the WfWorkflowControl this has been refactored out and replaced with a Serialization function.