ResumeEpisodeBookmarkAsync Method (String, Object, String, CancellationToken)

MS Activities Extensions

Collapse imageExpand ImageCopy imageCopyHover image
Returns a task that will resume a bookmark and run until the workflow is completed, aborted, timed out or idle with a specific bookmark

Namespace: Microsoft.Activities.Extensions
Assembly: Microsoft.Activities.Extensions (in Microsoft.Activities.Extensions.dll) Version: 2.0.6.9 (2.0.6.9)

Syntax

C#
public Task<WorkflowEpisodeResult> ResumeEpisodeBookmarkAsync(
	string bookmarkName,
	Object value,
	string waitForBookmarkName,
	CancellationToken token
)
Visual Basic
Public Function ResumeEpisodeBookmarkAsync ( _
	bookmarkName As String, _
	value As Object, _
	waitForBookmarkName As String, _
	token As CancellationToken _
) As Task(Of WorkflowEpisodeResult)
Visual C++
public:
Task<WorkflowEpisodeResult^>^ ResumeEpisodeBookmarkAsync(
	String^ bookmarkName, 
	Object^ value, 
	String^ waitForBookmarkName, 
	CancellationToken token
)

Parameters

bookmarkName
Type: System..::..String
The bookmark name.
value
Type: System..::..Object
The value to resume the bookmark with
waitForBookmarkName
Type: System..::..String
The wait For Bookmark Name.
token
Type: System.Threading..::..CancellationToken
The cancellation token.

Return Value

A task that will resume the bookmark

See Also