CounterSetInstanceCounterDataSet.Item[] 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
存取集合中的計數值。
多載
Item[Int32] |
使用指定的計數器識別項,存取集合中的計數器值。 |
Item[String] |
使用指定的計數器名稱,存取集合中的計數器值。 |
Item[Int32]
使用指定的計數器識別項,存取集合中的計數器值。
public:
property System::Diagnostics::PerformanceData::CounterData ^ default[int] { System::Diagnostics::PerformanceData::CounterData ^ get(int counterId); };
public System.Diagnostics.PerformanceData.CounterData this[int counterId] { get; }
member this.Item(int) : System.Diagnostics.PerformanceData.CounterData
Default Public ReadOnly Property Item(counterId As Integer) As CounterData
參數
- counterId
- Int32
計數器的識別項。 這是您在將計數器加入至計數器集合時所使用的識別項。
屬性值
計數器資料。
備註
在 C# 中實作為索引器。
適用於
Item[String]
使用指定的計數器名稱,存取集合中的計數器值。
public:
property System::Diagnostics::PerformanceData::CounterData ^ default[System::String ^] { System::Diagnostics::PerformanceData::CounterData ^ get(System::String ^ counterName); };
public System.Diagnostics.PerformanceData.CounterData this[string counterName] { get; }
member this.Item(string) : System.Diagnostics.PerformanceData.CounterData
Default Public ReadOnly Property Item(counterName As String) As CounterData
參數
- counterName
- String
計數器的名稱。 這是您在將計數器加入至計數器集合時所使用的名稱。
屬性值
計數器資料。
備註
在 C# 中實作為索引器。
若要使用此多載,您必須使用 CounterSet.AddCounter(Int32, CounterType, String) 方法,將計數器新增至計數器集合。