WorkflowHostResumeBookmarkOnBehalfOf 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.HostAssembly: Scanjour.Workflow4.Host (in Scanjour.Workflow4.Host.dll) Version: 24.5.0.0 (24.5.0.0)
Syntaxpublic BookmarkResumptionResult ResumeBookmarkOnBehalfOf(
Uri oDataUri,
string onBehalfOfUser,
Guid instanceId,
string bookmarkName,
Object value
)
Public Function ResumeBookmarkOnBehalfOf (
oDataUri As Uri,
onBehalfOfUser As String,
instanceId As Guid,
bookmarkName As String,
value As Object
) As BookmarkResumptionResult
public:
BookmarkResumptionResult ResumeBookmarkOnBehalfOf(
Uri^ oDataUri,
String^ onBehalfOfUser,
Guid instanceId,
String^ bookmarkName,
Object^ value
)
member ResumeBookmarkOnBehalfOf :
oDataUri : Uri *
onBehalfOfUser : string *
instanceId : Guid *
bookmarkName : string *
value : Object -> BookmarkResumptionResult
Parameters
- oDataUri Uri
- The Odata Uri.
- onBehalfOfUser String
- The user raising the bookmark.
- 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.
Return Value
BookmarkResumptionResultThe result of the bookmark resumption operation.
See Also