RunEpisodeAsync Method (Func(WorkflowApplicationIdleEventArgs, String, Boolean))

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(
	Func<WorkflowApplicationIdleEventArgs, string, bool> idleEventCallback
)
Visual Basic
Public Function RunEpisodeAsync ( _
	idleEventCallback As Func(Of WorkflowApplicationIdleEventArgs, String, Boolean) _
) As Task(Of WorkflowEpisodeResult)
Visual C++
public:
Task<WorkflowEpisodeResult^>^ RunEpisodeAsync(
	Func<WorkflowApplicationIdleEventArgs^, String^, bool>^ idleEventCallback
)

Parameters

idleEventCallback
Type: System..::..Func<(Of <(<'WorkflowApplicationIdleEventArgs, String, Boolean>)>)>
The idle Event Callback.

Return Value

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

See Also