다음을 통해 공유


Measurement<T> 생성자

정의

오버로드

Measurement<T>(T)

지정된 값을 사용하여 의 Measurement<T> 새 instance 초기화합니다.

Measurement<T>(T, IEnumerable<KeyValuePair<String,Object>>)

지정된 값과 태그 목록을 사용하여 의 Measurement<T> 새 instance 초기화합니다.

Measurement<T>(T, KeyValuePair<String,Object>[])

지정된 값과 태그 목록을 사용하여 의 Measurement<T> 새 instance 초기화합니다.

Measurement<T>(T, ReadOnlySpan<KeyValuePair<String,Object>>)

지정된 값과 태그 목록을 사용하여 의 Measurement<T> 새 instance 초기화합니다.

Measurement<T>(T)

Source:
Measurement.cs
Source:
Measurement.cs
Source:
Measurement.cs

지정된 값을 사용하여 의 Measurement<T> 새 instance 초기화합니다.

public:
 Measurement(T value);
public Measurement (T value);
new System.Diagnostics.Metrics.Measurement<'T (requires 'T : struct)> : 'T -> System.Diagnostics.Metrics.Measurement<'T (requires 'T : struct)>
Public Sub New (value As T)

매개 변수

value
T

측정값입니다.

적용 대상

Measurement<T>(T, IEnumerable<KeyValuePair<String,Object>>)

Source:
Measurement.cs
Source:
Measurement.cs
Source:
Measurement.cs

지정된 값과 태그 목록을 사용하여 의 Measurement<T> 새 instance 초기화합니다.

public:
 Measurement(T value, System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>> ^ tags);
public Measurement (T value, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object?>>? tags);
new System.Diagnostics.Metrics.Measurement<'T (requires 'T : struct)> : 'T * seq<System.Collections.Generic.KeyValuePair<string, obj>> -> System.Diagnostics.Metrics.Measurement<'T (requires 'T : struct)>
Public Sub New (value As T, tags As IEnumerable(Of KeyValuePair(Of String, Object)))

매개 변수

value
T

측정값입니다.

tags
IEnumerable<KeyValuePair<String,Object>>

측정값과 연결된 태그 목록입니다.

적용 대상

Measurement<T>(T, KeyValuePair<String,Object>[])

Source:
Measurement.cs
Source:
Measurement.cs
Source:
Measurement.cs

지정된 값과 태그 목록을 사용하여 의 Measurement<T> 새 instance 초기화합니다.

public:
 Measurement(T value, ... cli::array <System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>> ^ tags);
public Measurement (T value, params System.Collections.Generic.KeyValuePair<string,object>[]? tags);
new System.Diagnostics.Metrics.Measurement<'T (requires 'T : struct)> : 'T * System.Collections.Generic.KeyValuePair<string, obj>[] -> System.Diagnostics.Metrics.Measurement<'T (requires 'T : struct)>
Public Sub New (value As T, ParamArray tags As KeyValuePair(Of String, Object)())

매개 변수

value
T

측정값입니다.

tags
KeyValuePair<String,Object>[]

측정값과 연결된 태그 목록입니다.

적용 대상

Measurement<T>(T, ReadOnlySpan<KeyValuePair<String,Object>>)

Source:
Measurement.cs
Source:
Measurement.cs
Source:
Measurement.cs

지정된 값과 태그 목록을 사용하여 의 Measurement<T> 새 instance 초기화합니다.

public:
 Measurement(T value, ReadOnlySpan<System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>> tags);
public Measurement (T value, ReadOnlySpan<System.Collections.Generic.KeyValuePair<string,object?>> tags);
new System.Diagnostics.Metrics.Measurement<'T (requires 'T : struct)> : 'T * ReadOnlySpan<System.Collections.Generic.KeyValuePair<string, obj>> -> System.Diagnostics.Metrics.Measurement<'T (requires 'T : struct)>
Public Sub New (value As T, tags As ReadOnlySpan(Of KeyValuePair(Of String, Object)))

매개 변수

value
T

측정값입니다.

tags
ReadOnlySpan<KeyValuePair<String,Object>>

측정값과 연결된 태그 목록입니다.

적용 대상