CreateBookmark

The CreateBookmark activity creates a named bookmark in a workflow at the point where the workflow execution can be resumed at a later time. This activity is used to persist a workflow instance. Once a workflow is persisted, it can continue execution using the ResumeBookmark activity or the IWorkflowEngine::ResumeBookmark method in .NET.

CreateBookmark

Properties

CreateBookmark Properties
Property Value Required Notes
BookmarkName InArgument<String> Yes Specify the BookmarkName using a VB expression or variable. More than one bookmark can be executing at a time; therefore, this property is used to uniquely identify the bookmark associated with this activity.
DisplayName String No Specify a name for the activity or accept the default.
Result OutArgument
<IDictionary
<String,Object>>
Yes Specify the Result using a VB expression or variable. The Result value is passed from a call to ResumeBookmark or IWorkflowEngine::ResumeBookmark.

The following image shows how to browse and select the variable type.

select variable type

variable type IDictionary

To see how this activity can be used in a workflow, refer to