InstanceManager.GetDebugTraces Method (String, String)

 

Gets a collection of objects from the debug traces.

Namespace:   Microsoft.Workflow.Client
Assembly:  Microsoft.Workflow.Client (in Microsoft.Workflow.Client.dll)

Syntax

public Collection<DebugTraceRecord> GetDebugTraces(
    string workflowName,
    string instanceName
)
public:
Collection<DebugTraceRecord^>^ GetDebugTraces(
    String^ workflowName,
    String^ instanceName
)
member GetDebugTraces : 
        workflowName:string *
        instanceName:string -> Collection<DebugTraceRecord>
Public Function GetDebugTraces (
    workflowName As String,
    instanceName As String
) As Collection(Of DebugTraceRecord)

Parameters

  • workflowName
    Type: System.String

    The name of the workflow to which the instance belongs.

  • instanceName
    Type: System.String

    The name of the workflow to be terminated.

Return Value

Type: System.Collections.ObjectModel.Collection<DebugTraceRecord>

A collection of objects from the debug traces.

See Also

InstanceManager Class
Microsoft.Workflow.Client Namespace

Return to top