CorrelationManager.StartLogicalOperation 方法

定义

启动线程上的逻辑操作。

重载

StartLogicalOperation()

启动线程上的逻辑操作。

StartLogicalOperation(Object)

启动线程上具有指定标识的逻辑操作。

StartLogicalOperation()

Source:
CorrelationManager.cs
Source:
CorrelationManager.cs
Source:
CorrelationManager.cs

启动线程上的逻辑操作。

public:
 void StartLogicalOperation();
public void StartLogicalOperation ();
member this.StartLogicalOperation : unit -> unit
Public Sub StartLogicalOperation ()

注解

逻辑操作是使用逻辑操作标识符自动生成的 GUID 启动的。

适用于

StartLogicalOperation(Object)

Source:
CorrelationManager.cs
Source:
CorrelationManager.cs
Source:
CorrelationManager.cs

启动线程上具有指定标识的逻辑操作。

public:
 void StartLogicalOperation(System::Object ^ operationId);
public void StartLogicalOperation (object operationId);
member this.StartLogicalOperation : obj -> unit
Public Sub StartLogicalOperation (operationId As Object)

参数

operationId
Object

用于标识操作的对象。

例外

operationId 参数为 null

示例

下面的代码示例演示如何通过初始化要与main线程关联的逻辑操作来使用 StartLogicalOperation(Object) 方法。 有关完整的代码示例,请参阅 CorrelationManager 类。

TraceSource ts = new TraceSource("MyApp");
int i = ts.Listeners.Add(new ConsoleTraceListener());
ts.Listeners[i].TraceOutputOptions = TraceOptions.LogicalOperationStack;
ts.Switch = new SourceSwitch("MyAPP", "Verbose");
// Start the logical operation on the Main thread.
Trace.CorrelationManager.StartLogicalOperation("MainThread");
Dim ts As New TraceSource("MyApp")
Dim i As Integer = ts.Listeners.Add(New ConsoleTraceListener())
ts.Listeners(i).TraceOutputOptions = TraceOptions.LogicalOperationStack
ts.Switch = New SourceSwitch("MyAPP", "Verbose")
' Start the logical operation on the Main thread.
Trace.CorrelationManager.StartLogicalOperation("MainThread")

注解

参数 operationId 可以是任何对象,例如 String 允许为跟踪目的标识操作的 。 由 operationId 表示的对象将添加到 属性中 LogicalOperationStack

适用于