Trace Method

MS Activities Extensions

Collapse imageExpand ImageCopy imageCopyHover image
The trace extension method allows you to get a formatted trace of the bookmarks and count.

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 void Trace(
	this WorkflowApplicationIdleEventArgs workflowApplicationIdleEventArgs
)
Visual Basic
<ExtensionAttribute> _
Public Shared Sub Trace ( _
	workflowApplicationIdleEventArgs As WorkflowApplicationIdleEventArgs _
)
Visual C++
public:
[ExtensionAttribute]
static void Trace(
	WorkflowApplicationIdleEventArgs^ workflowApplicationIdleEventArgs
)

Parameters

workflowApplicationIdleEventArgs
Type: System.Activities..::..WorkflowApplicationIdleEventArgs
The idle event argument passed by the workflow runtime to your delegate

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