RunEpisodeAsync Method (String)

MS Activities Extensions

Collapse imageExpand ImageCopy imageCopyHover image
Returns a task that runs a workflow episode

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> RunEpisodeAsync(
	string waitForBookmarkName
)
Visual Basic
Public Function RunEpisodeAsync ( _
	waitForBookmarkName As String _
) As Task(Of WorkflowEpisodeResult)
Visual C++
public:
Task<WorkflowEpisodeResult^>^ RunEpisodeAsync(
	String^ waitForBookmarkName
)

Parameters

waitForBookmarkName
Type: System..::..String
The bookmark name.

Return Value

A task for running the workflow until an idle event with the given bookmark occurs

See Also