Microsoft.Activities.Extensions |
WorkflowEpisode..::..ResumeEpisodeBookmarkAsync Method (String, Object, Func<(Of <(<'WorkflowApplicationIdleEventArgs, String, Boolean>)>)>, CancellationToken) |
WorkflowEpisode Class See Also Send Feedback |
Returns a task that will resume a bookmark and run until the workflow is completed, aborted, timed out or idle where the callback indicates the episode should end
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, Func<WorkflowApplicationIdleEventArgs, string, bool> idleEventCallback, CancellationToken token ) |
Visual Basic |
---|
Public Function ResumeEpisodeBookmarkAsync ( _ bookmarkName As String, _ value As Object, _ idleEventCallback As Func(Of WorkflowApplicationIdleEventArgs, String, Boolean), _ token As CancellationToken _ ) As Task(Of WorkflowEpisodeResult) |
Visual C++ |
---|
public: Task<WorkflowEpisodeResult^>^ ResumeEpisodeBookmarkAsync( String^ bookmarkName, Object^ value, Func<WorkflowApplicationIdleEventArgs^, String^, bool>^ idleEventCallback, CancellationToken token ) |
Parameters
- bookmarkName
- Type: System..::..String
The bookmark name.
- value
- Type: System..::..Object
The value to resume the bookmark with
- idleEventCallback
- Type: System..::..Func<(Of <(<'WorkflowApplicationIdleEventArgs, String, Boolean>)>)>
The idle event callback.
- token
- Type: System.Threading..::..CancellationToken
The cancellation token.