TraceEventCache.LogicalOperationStack 属性

定义

获取堆栈中包含的关联数据。

public:
 property System::Collections::Stack ^ LogicalOperationStack { System::Collections::Stack ^ get(); };
public System.Collections.Stack LogicalOperationStack { get; }
member this.LogicalOperationStack : System.Collections.Stack
Public ReadOnly Property LogicalOperationStack As Stack

属性值

包含相关数据的 Stack

注解

相关数据存储为名为“System.Diagnostics.Trace.CorrelationManagerSlot”的调用上下文中。 类 CorrelationManager 提供用于在线程绑定上下文中存储逻辑操作标识的方法,并使用存储的标识自动标记线程生成的每个跟踪事件。 CorrelationManager通过 Trace.CorrelationManager 属性访问 。 每次调用 方法都会 StartLogicalOperation 将新的逻辑操作标识推送到堆栈上。 每次调用 方法都会 StopLogicalOperation 从堆栈中弹出一个逻辑操作标识

适用于