ResumeEpisodeBookmarkAsync Method (WorkflowApplication, String)

MS Activities Extensions

Collapse imageExpand ImageCopy imageCopyHover image
Creates a task that will resume a bookmark and run the workflow until the activity is Closed, Faulted, Idle or Timeout

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 static Task<WorkflowEpisodeResult> ResumeEpisodeBookmarkAsync(
	this WorkflowApplication workflowApplication,
	string bookmarkName
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function ResumeEpisodeBookmarkAsync ( _
	workflowApplication As WorkflowApplication, _
	bookmarkName As String _
) As Task(Of WorkflowEpisodeResult)
Visual C++
public:
[ExtensionAttribute]
static Task<WorkflowEpisodeResult^>^ ResumeEpisodeBookmarkAsync(
	WorkflowApplication^ workflowApplication, 
	String^ bookmarkName
)

Parameters

workflowApplication
Type: System.Activities..::..WorkflowApplication
The workflow application.
bookmarkName
Type: System..::..String
The bookmark name.

Return Value

A task that will resume the workflow

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type WorkflowApplication. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also