WorkflowHostGetWorkflowOutputs Method |
Get the output argument dictionary for a given completed workflow instance. Limitation: outputs can only be gotten for workflows
that have been completed by this instance (i.e. in this process) of the workflow host. In all other cases, null will be returned.
Namespace: Scanjour.Workflow4.HostAssembly: Scanjour.Workflow4.Host (in Scanjour.Workflow4.Host.dll) Version: 24.5.0.0 (24.5.0.0)
Syntaxpublic IDictionary<string, Object> GetWorkflowOutputs(
Uri oDataUri,
Guid instanceId
)
Public Function GetWorkflowOutputs (
oDataUri As Uri,
instanceId As Guid
) As IDictionary(Of String, Object)
public:
IDictionary<String^, Object^>^ GetWorkflowOutputs(
Uri^ oDataUri,
Guid instanceId
)
member GetWorkflowOutputs :
oDataUri : Uri *
instanceId : Guid -> IDictionary<string, Object>
Parameters
- oDataUri Uri
- The Odata Uri.
- instanceId Guid
- Workflow instance
Return Value
IDictionaryString,
ObjectOutput argument dictionary
See Also