EventListener.EventSourceIndex(EventSource) 方法

定义

获取表示指定事件源的较小非负数。

protected:
 static int EventSourceIndex(System::Diagnostics::Tracing::EventSource ^ eventSource);
public:
 static int EventSourceIndex(System::Diagnostics::Tracing::EventSource ^ eventSource);
protected static int EventSourceIndex (System.Diagnostics.Tracing.EventSource eventSource);
public static int EventSourceIndex (System.Diagnostics.Tracing.EventSource eventSource);
static member EventSourceIndex : System.Diagnostics.Tracing.EventSource -> int
Protected Shared Function EventSourceIndex (eventSource As EventSource) As Integer
Public Shared Function EventSourceIndex (eventSource As EventSource) As Integer

参数

eventSource
EventSource

要查找其索引的事件源。

返回

表示指定的事件源的较小非负数。

注解

返回 EventSourceIndex 的值标识适合为数组编制索引的事件源。 此整数在应用程序域中是唯一的。 事件侦听器可能会发现存储有关连接到它的每个事件源的其他信息很有用。 返回的值 EventSourceIndex 允许将此额外信息有效地存储在可展开的数组中,例如 List<T>

适用于