BookmarksToDelimitedList Method

MS Activities Extensions

Collapse imageExpand ImageCopy imageCopyHover image
Gets a comma delimited list of bookmarks

Namespace: Microsoft.Activities.Extensions.Diagnostics
Assembly: Microsoft.Activities.Extensions (in Microsoft.Activities.Extensions.dll) Version: 2.0.6.9 (2.0.6.9)

Syntax

C#
public static string BookmarksToDelimitedList(
	this WorkflowApplicationIdleEventArgs workflowApplicationIdleEventArgs
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function BookmarksToDelimitedList ( _
	workflowApplicationIdleEventArgs As WorkflowApplicationIdleEventArgs _
) As String
Visual C++
public:
[ExtensionAttribute]
static String^ BookmarksToDelimitedList(
	WorkflowApplicationIdleEventArgs^ workflowApplicationIdleEventArgs
)

Parameters

workflowApplicationIdleEventArgs
Type: System.Activities..::..WorkflowApplicationIdleEventArgs
The workflow application idle event args.

Return Value

Returns the bookmarks as a delimited list.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type WorkflowApplicationIdleEventArgs. 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