ResumeEpisodeBookmarkAsync Method (String, Object)

MS Activities Extensions

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

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
)
Visual Basic
Public Function ResumeEpisodeBookmarkAsync ( _
	bookmarkName As String, _
	value As Object _
) As Task(Of WorkflowEpisodeResult)
Visual C++
public:
Task<WorkflowEpisodeResult^>^ ResumeEpisodeBookmarkAsync(
	String^ bookmarkName, 
	Object^ value
)

Parameters

bookmarkName
Type: System..::..String
The bookmark name.
value
Type: System..::..Object
The value to resume the bookmark with

Return Value

A task that will resume the bookmark

See Also