CounterSet.AddCounter 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將計數器加入計數器集合。
多載
AddCounter(Int32, CounterType) |
使用指定的計數器識別碼和類型,將計數器新增至計數器集。 |
AddCounter(Int32, CounterType, String) |
使用指定的計數器識別碼和類型,以及計數器的顯示名稱,將計數器新增至計數器集。 |
AddCounter(Int32, CounterType)
使用指定的計數器識別碼和類型,將計數器新增至計數器集。
public:
void AddCounter(int counterId, System::Diagnostics::PerformanceData::CounterType counterType);
public void AddCounter (int counterId, System.Diagnostics.PerformanceData.CounterType counterType);
member this.AddCounter : int * System.Diagnostics.PerformanceData.CounterType -> unit
Public Sub AddCounter (counterId As Integer, counterType As CounterType)
參數
- counterId
- Int32
識別計數器。 使用您在指令清單中使用的相同值來定義計數器。
- counterType
- CounterType
識別計數器類型。 計數器類型會決定計數器數據的計算、平均和顯示方式。
例外狀況
計數器標識碼已存在於集合中或為負數,或計數器類型為 NULL 或無效。
在建立計數器集的實例之後,您無法將計數器新增至計數器集。
備註
您必須先將計數器新增至計數器集合,才能建立計數器集的實例。
適用於
AddCounter(Int32, CounterType, String)
使用指定的計數器識別碼和類型,以及計數器的顯示名稱,將計數器新增至計數器集。
public:
void AddCounter(int counterId, System::Diagnostics::PerformanceData::CounterType counterType, System::String ^ counterName);
public void AddCounter (int counterId, System.Diagnostics.PerformanceData.CounterType counterType, string counterName);
member this.AddCounter : int * System.Diagnostics.PerformanceData.CounterType * string -> unit
Public Sub AddCounter (counterId As Integer, counterType As CounterType, counterName As String)
參數
- counterId
- Int32
識別計數器。 使用您在指令清單中使用的相同值來定義計數器。
- counterType
- CounterType
識別計數器類型。 計數器類型會決定計數器數據的計算、平均和顯示方式。
- counterName
- String
計數器的名稱。 您可以使用這個名稱,在計數器集合實例中為計數器編製索引。 (請參閱 Item[String]。
例外狀況
計數器標識碼已存在於集合中或為負數,或計數器類型為 NULL 或無效。
在建立計數器集的實例之後,您無法將計數器新增至計數器集。
範例
如需範例,請參閱 System.Diagnostics.PerformanceData。
備註
您必須先將計數器新增至計數器集合,才能建立計數器集的實例。