WorkflowInstance.WorkflowInstanceControl.GetBookmarks Method
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.
Returns the collection of available bookmarks for the WorkflowInstance.
Overloads
GetBookmarks() |
Returns the collection of available bookmarks for the WorkflowInstance. |
GetBookmarks(BookmarkScope) |
Returns the collection of available bookmarks for the WorkflowInstance created in the specified BookmarkScope. |
GetBookmarks()
Returns the collection of available bookmarks for the WorkflowInstance.
public:
System::Collections::ObjectModel::ReadOnlyCollection<System::Activities::Hosting::BookmarkInfo ^> ^ GetBookmarks();
public System.Collections.ObjectModel.ReadOnlyCollection<System.Activities.Hosting.BookmarkInfo> GetBookmarks ();
member this.GetBookmarks : unit -> System.Collections.ObjectModel.ReadOnlyCollection<System.Activities.Hosting.BookmarkInfo>
Public Function GetBookmarks () As ReadOnlyCollection(Of BookmarkInfo)
Returns
A collection of bookmarks for the WorkflowInstance.
Applies to
GetBookmarks(BookmarkScope)
Returns the collection of available bookmarks for the WorkflowInstance created in the specified BookmarkScope.
public:
System::Collections::ObjectModel::ReadOnlyCollection<System::Activities::Hosting::BookmarkInfo ^> ^ GetBookmarks(System::Activities::BookmarkScope ^ scope);
public System.Collections.ObjectModel.ReadOnlyCollection<System.Activities.Hosting.BookmarkInfo> GetBookmarks (System.Activities.BookmarkScope scope);
member this.GetBookmarks : System.Activities.BookmarkScope -> System.Collections.ObjectModel.ReadOnlyCollection<System.Activities.Hosting.BookmarkInfo>
Public Function GetBookmarks (scope As BookmarkScope) As ReadOnlyCollection(Of BookmarkInfo)
Parameters
- scope
- BookmarkScope
The bookmark scope to inspect.
Returns
The collection of bookmarks created in the specified BookmarkScope.