IdleWithBookmark Method

MS Activities Extensions

Collapse imageExpand ImageCopy imageCopyHover image
Function that will end the episode when an idle with the target bookmark name is reached

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 bool IdleWithBookmark(
	WorkflowApplicationIdleEventArgs args,
	string targetBookmarkName
)
Visual Basic
Public Function IdleWithBookmark ( _
	args As WorkflowApplicationIdleEventArgs, _
	targetBookmarkName As String _
) As Boolean
Visual C++
public:
bool IdleWithBookmark(
	WorkflowApplicationIdleEventArgs^ args, 
	String^ targetBookmarkName
)

Parameters

args
Type: System.Activities..::..WorkflowApplicationIdleEventArgs
The idle event args.
targetBookmarkName
Type: System..::..String
The target Bookmark.

Return Value

true if the idle arguments contains a bookmark with the target bookmark name

See Also