Instrument<T> 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
Instrument<T>(Meter, String) |
Instrument<T>새 인스턴스를 생성합니다. |
Instrument<T>(Meter, String, String, String) |
속성 미터, 이름, 설명 및 단위를 사용하여 메트릭 계측을 만듭니다. |
Instrument<T>(Meter, String, String, String, IEnumerable<KeyValuePair<String,Object>>) |
지정된 미터, 이름, 설명 및 단위를 사용하여 Instrument<T> 클래스의 새 인스턴스를 초기화합니다. |
Instrument<T>(Meter, String, String, String, IEnumerable<KeyValuePair<String,Object>>, InstrumentAdvice<T>) |
Instrument<T>새 인스턴스를 생성합니다. |
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)
- Source:
- Instrument.common.cs
- Source:
- Instrument.common.cs
- Source:
- Instrument.common.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<'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>>)
- Source:
- Instrument.common.cs
- Source:
- Instrument.common.cs
지정된 미터, 이름, 설명 및 단위를 사용하여 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>.
적용 대상
.NET