ResumeEpisodeBookmark Method (String, Object, Func(WorkflowApplicationIdleEventArgs, String, Boolean))

MS Activities Extensions

Collapse imageExpand ImageCopy imageCopyHover image
Resumes the workflow bookmark and runs 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 WorkflowEpisodeResult ResumeEpisodeBookmark(
	string bookmarkName,
	Object value,
	Func<WorkflowApplicationIdleEventArgs, string, bool> idleEventCallback
)
Visual Basic
Public Function ResumeEpisodeBookmark ( _
	bookmarkName As String, _
	value As Object, _
	idleEventCallback As Func(Of WorkflowApplicationIdleEventArgs, String, Boolean) _
) As WorkflowEpisodeResult
Visual C++
public:
WorkflowEpisodeResult^ ResumeEpisodeBookmark(
	String^ bookmarkName, 
	Object^ value, 
	Func<WorkflowApplicationIdleEventArgs^, String^, bool>^ idleEventCallback
)

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.

Return Value

The WorkflowEpisodeResult that ended the episode

Exceptions

ExceptionCondition
Microsoft.Activities.Extensions..::..BookmarkResumptionException Failed to resume bookmark

See Also