BookmarkOptions Enum
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.
Specifies the options for a Bookmark.
This enumeration supports a bitwise combination of its member values.
public enum class BookmarkOptions
[System.Flags]
public enum BookmarkOptions
[<System.Flags>]
type BookmarkOptions =
Public Enum BookmarkOptions
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | Default Bookmark options. |
MultipleResume | 1 | A Bookmark that can be resumed multiple times. |
NonBlocking | 2 | A Bookmark that does not block the workflow. |
Remarks
By default, the workflow runtime removes a pending bookmark from its bookmarks table when resuming the bookmark. However if the bookmark is specified as MultipleResume
, the bookmark is not removed from the table, and the same bookmark can be resumed multiple times. An example usage of MultipleResume
is by looping activities such as System.Activities.Statements.While, System.Activities.Statements.ForEach<T>, and System.Activities.Statements.Flowchart.
By default, the workflow runtime does not consider an activity to have completed execution if it has pending bookmarks. However, if a bookmark is specified as NonBlocking
at creation time, the workflow runtime allows the activity to complete execution even if it has pending NonBlocking
bookmarks, provided it has no other pending work.