Click or drag to resize

WorkflowHostResumeBookmark(Uri, Guid, String, Object, ActionWorkflowApplicationCompletedEventArgs) Method

Initiates an operation to resume the specified bookmark, using the specified value. The bookmark to be resumed is previously created by an activity within the workflow instance.

Namespace: Scanjour.Workflow4.Host
Assembly: Scanjour.Workflow4.Host (in Scanjour.Workflow4.Host.dll) Version: 24.5.0.0 (24.5.0.0)
Syntax
public BookmarkResumptionResult ResumeBookmark(
	Uri oDataUri,
	Guid instanceId,
	string bookmarkName,
	Object value,
	Action<WorkflowApplicationCompletedEventArgs> completedCallback
)

Parameters

oDataUri  Uri
The Odata Uri.
instanceId  Guid
Workflow instance
bookmarkName  String
The bookmark to resume
value  Object
An object passed as a parameter to the method that is invoked when the bookmark resumes
completedCallback  ActionWorkflowApplicationCompletedEventArgs
Callback that will (if non-null) be called when the workflow completes

Return Value

BookmarkResumptionResult
The result of the bookmark resumption operation
See Also