WorkflowInstance.WorkflowInstanceControl.ScheduleBookmarkResumption Method

Definition

Schedules a Bookmark resumption.

Overloads

ScheduleBookmarkResumption(Bookmark, Object)

Schedules a bookmark resumption with the specified value.

ScheduleBookmarkResumption(Bookmark, Object, BookmarkScope)

Schedules a Bookmark resumption from the specified BookmarkScope.

ScheduleBookmarkResumption(Bookmark, Object)

Schedules a bookmark resumption with the specified value.

public:
 System::Activities::BookmarkResumptionResult ScheduleBookmarkResumption(System::Activities::Bookmark ^ bookmark, System::Object ^ value);
public System.Activities.BookmarkResumptionResult ScheduleBookmarkResumption (System.Activities.Bookmark bookmark, object value);
member this.ScheduleBookmarkResumption : System.Activities.Bookmark * obj -> System.Activities.BookmarkResumptionResult
Public Function ScheduleBookmarkResumption (bookmark As Bookmark, value As Object) As BookmarkResumptionResult

Parameters

bookmark
Bookmark

The bookmark to resume.

value
Object

The data to be passed to the activity that created the Bookmark.

Returns

One of the enumeration values that indicates the result of a Bookmark scheduling operation.

Applies to

ScheduleBookmarkResumption(Bookmark, Object, BookmarkScope)

Schedules a Bookmark resumption from the specified BookmarkScope.

public:
 System::Activities::BookmarkResumptionResult ScheduleBookmarkResumption(System::Activities::Bookmark ^ bookmark, System::Object ^ value, System::Activities::BookmarkScope ^ scope);
public System.Activities.BookmarkResumptionResult ScheduleBookmarkResumption (System.Activities.Bookmark bookmark, object value, System.Activities.BookmarkScope scope);
member this.ScheduleBookmarkResumption : System.Activities.Bookmark * obj * System.Activities.BookmarkScope -> System.Activities.BookmarkResumptionResult
Public Function ScheduleBookmarkResumption (bookmark As Bookmark, value As Object, scope As BookmarkScope) As BookmarkResumptionResult

Parameters

bookmark
Bookmark

The bookmark to resume.

value
Object

The data to be passed to the activity that created the Bookmark.

scope
BookmarkScope

The Bookmark under which the Bookmark was created.

Returns

One of the enumeration values that indicates the result of a Bookmark scheduling operation.

Applies to