CounterAttribute<T> 构造函数

定义

重载

CounterAttribute<T>(String[])

初始化 CounterAttribute<T> 类的新实例。

CounterAttribute<T>(Type)

初始化 CounterAttribute<T> 类的新实例。

CounterAttribute<T>(String[])

Source:
CounterAttributeT.cs
Source:
CounterAttributeT.cs

初始化 CounterAttribute<T> 类的新实例。

public:
 CounterAttribute(... cli::array <System::String ^> ^ tagNames);
public CounterAttribute (params string[] tagNames);
new Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute<'T (requires 'T : struct)> : string[] -> Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute<'T (requires 'T : struct)>
Public Sub New (ParamArray tagNames As String())

参数

tagNames
String[]

标记名称的变量数组。

适用于

CounterAttribute<T>(Type)

Source:
CounterAttributeT.cs
Source:
CounterAttributeT.cs

初始化 CounterAttribute<T> 类的新实例。

public:
 CounterAttribute(Type ^ type);
public CounterAttribute (Type type);
new Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute<'T (requires 'T : struct)> : Type -> Microsoft.Extensions.Diagnostics.Metrics.CounterAttribute<'T (requires 'T : struct)>
Public Sub New (type As Type)

参数

type
Type

提供指标标记名称的类型。 标记值取自类型的公共字段和属性。

适用于