Instrument<T> 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Instrument<T>(Meter, String)
建構 Instrument<T>的新實例。
protected:
Instrument(System::Diagnostics::Metrics::Meter ^ meter, System::String ^ name);
protected Instrument (System.Diagnostics.Metrics.Meter meter, string name);
new System.Diagnostics.Metrics.Instrument<'T (requires 'T : struct)> : System.Diagnostics.Metrics.Meter * string -> System.Diagnostics.Metrics.Instrument<'T (requires 'T : struct)>
Protected Sub New (meter As Meter, name As String)
參數
- meter
- Meter
建立儀器的計量。 無法 null
。
- name
- String
檢測名稱。 無法 null
。
適用於
Instrument<T>(Meter, String, String, String)
使用屬性計量、名稱、描述和單位來建立計量檢測。
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<'T (requires 'T : struct)> : System.Diagnostics.Metrics.Meter * string * string * string -> System.Diagnostics.Metrics.Instrument<'T (requires 'T : struct)>
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{T} 的所有類別都必須呼叫這個建構函式。
適用於
Instrument<T>(Meter, String, String, String, IEnumerable<KeyValuePair<String,Object>>)
使用指定的計量、名稱、描述和單位,初始化 Instrument<T> 類別的新實例。
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);
new System.Diagnostics.Metrics.Instrument<'T (requires 'T : struct)> : System.Diagnostics.Metrics.Meter * string * string * string * seq<System.Collections.Generic.KeyValuePair<string, obj>> -> System.Diagnostics.Metrics.Instrument<'T (requires 'T : struct)>
Protected Sub New (meter As Meter, name As String, unit As String, description As String, tags As IEnumerable(Of KeyValuePair(Of String, Object)))
參數
- meter
- Meter
建立儀器的計量。
- name
- String
檢測名稱。 無法 null
。
- unit
- String
選擇性的測量單位。
- description
- String
選擇性的檢測描述。
- tags
- IEnumerable<KeyValuePair<String,Object>>
選擇性的檢測標籤。
備註
在建構擴充類別的物件時,所有擴充 Instrument<T> 的類別都需要呼叫這個建構函式。
適用於
Instrument<T>(Meter, String, String, String, IEnumerable<KeyValuePair<String,Object>>, InstrumentAdvice<T>)
建構 Instrument<T>的新實例。
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, System.Diagnostics.Metrics.InstrumentAdvice<T>? advice = default);
new System.Diagnostics.Metrics.Instrument<'T (requires 'T : struct)> : System.Diagnostics.Metrics.Meter * string * string * string * seq<System.Collections.Generic.KeyValuePair<string, obj>> * System.Diagnostics.Metrics.InstrumentAdvice<'T (requires 'T : struct)> -> System.Diagnostics.Metrics.Instrument<'T (requires 'T : struct)>
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, Optional advice As InstrumentAdvice(Of T) = Nothing)
參數
- meter
- Meter
建立儀器的計量。 無法 null
。
- name
- String
檢測名稱。 無法 null
。
- unit
- String
選擇性檢測單位的度量單位。
- description
- String
選擇性的檢測描述。
- tags
- IEnumerable<KeyValuePair<String,Object>>
選擇性的檢測標籤。
- advice
- InstrumentAdvice<T>
選擇性 InstrumentAdvice<T>。