CounterSet.AddCounter 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将计数器添加到计数器集。
重载
AddCounter(Int32, CounterType) |
使用指定的计数器标识符和类型将计数器添加到计数器集。 |
AddCounter(Int32, CounterType, String) |
使用指定的计数器标识符和类型以及计数器的显示名称,将计数器添加到计数器集。 |
AddCounter(Int32, CounterType)
- Source:
- CounterSet.cs
- Source:
- CounterSet.cs
- Source:
- CounterSet.cs
- Source:
- CounterSet.cs
- Source:
- CounterSet.cs
使用指定的计数器标识符和类型将计数器添加到计数器集。
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)
- Source:
- CounterSet.cs
- Source:
- CounterSet.cs
- Source:
- CounterSet.cs
- Source:
- CounterSet.cs
- Source:
- CounterSet.cs
使用指定的计数器标识符和类型以及计数器的显示名称,将计数器添加到计数器集。
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。
注解
必须先将计数器添加到计数器集,然后才能创建计数器集的实例。