共用方式為


Instrument 建構函式

定義

多載

Instrument(Meter, String)

建構 Instrument的新實例。

Instrument(Meter, String, String, String)

受保護的建構函式可初始化常見的檢測屬性,例如計量、名稱、描述和單位。

Instrument(Meter, String, String, String, IEnumerable<KeyValuePair<String,Object>>)

使用指定的計量、名稱、描述和單位,初始化 Instrument 類別的新實例。

Instrument(Meter, String)

建構 Instrument的新實例。

protected:
 Instrument(System::Diagnostics::Metrics::Meter ^ meter, System::String ^ name);
protected Instrument (System.Diagnostics.Metrics.Meter meter, string name);
new System.Diagnostics.Metrics.Instrument : System.Diagnostics.Metrics.Meter * string -> System.Diagnostics.Metrics.Instrument
Protected Sub New (meter As Meter, name As String)

參數

meter
Meter

建立儀器的計量。 無法 null

name
String

檢測名稱。 無法 null

適用於

Instrument(Meter, String, String, String)

來源:
Instrument.cs
來源:
Instrument.cs
來源:
Instrument.cs

受保護的建構函式可初始化常見的檢測屬性,例如計量、名稱、描述和單位。

protected:
 Instrument(System::Diagnostics::Metrics::Meter ^ meter, System::String ^ name, System::String ^ unit, System::String ^ description);
protected Instrument (System.Diagnostics.Metrics.Meter meter, string name, string? unit, string? description);
new System.Diagnostics.Metrics.Instrument : System.Diagnostics.Metrics.Meter * string * string * string -> System.Diagnostics.Metrics.Instrument
Protected Sub New (meter As Meter, name As String, unit As String, description As String)

參數

meter
Meter

建立儀器的計量。

name
String

檢測名稱。 無法 null

unit
String

選擇性檢測單位的度量單位。

description
String

選擇性的檢測描述。

備註

當建構擴充類別的物件時,Instrument 必須呼叫這個建構函式的所有類別。

適用於

Instrument(Meter, String, String, String, IEnumerable<KeyValuePair<String,Object>>)

來源:
Instrument.cs
來源:
Instrument.cs

使用指定的計量、名稱、描述和單位,初始化 Instrument 類別的新實例。

protected:
 Instrument(System::Diagnostics::Metrics::Meter ^ meter, System::String ^ name, System::String ^ unit, System::String ^ description, System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>> ^ tags);
protected Instrument (System.Diagnostics.Metrics.Meter meter, string name, string? unit, string? description, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object?>>? tags);
protected Instrument (System.Diagnostics.Metrics.Meter meter, string name, string? unit = default, string? description = default, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object?>>? tags = default);
new System.Diagnostics.Metrics.Instrument : System.Diagnostics.Metrics.Meter * string * string * string * seq<System.Collections.Generic.KeyValuePair<string, obj>> -> System.Diagnostics.Metrics.Instrument
Protected Sub New (meter As Meter, name As String, unit As String, description As String, tags As IEnumerable(Of KeyValuePair(Of String, Object)))
Protected Sub New (meter As Meter, name As String, Optional unit As String = Nothing, Optional description As String = Nothing, Optional tags As IEnumerable(Of KeyValuePair(Of String, Object)) = Nothing)

參數

meter
Meter

建立儀器的計量。

name
String

檢測名稱。 無法 null

unit
String

選擇性的測量單位。

description
String

選擇性的檢測描述。

tags
IEnumerable<KeyValuePair<String,Object>>

選擇性的檢測標籤。

備註

在建構擴充類別的物件時,所有擴充 Instrument 的類別都需要呼叫這個建構函式。

適用於