Measurement<T> 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
Measurement<T>(T) |
지정된 값을 사용하여 의 Measurement<T> 새 인스턴스를 초기화합니다. |
Measurement<T>(T, IEnumerable<KeyValuePair<String,Object>>) |
지정된 값과 태그 목록을 사용하여 의 Measurement<T> 새 인스턴스를 초기화합니다. |
Measurement<T>(T, KeyValuePair<String,Object>[]) |
지정된 값과 태그 목록을 사용하여 의 Measurement<T> 새 인스턴스를 초기화합니다. |
Measurement<T>(T, TagList) | |
Measurement<T>(T, ReadOnlySpan<KeyValuePair<String,Object>>) |
지정된 값과 태그 목록을 사용하여 의 Measurement<T> 새 인스턴스를 초기화합니다. |
Measurement<T>(T)
- Source:
- Measurement.cs
- Source:
- Measurement.cs
- Source:
- Measurement.cs
지정된 값을 사용하여 의 Measurement<T> 새 인스턴스를 초기화합니다.
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> 새 인스턴스를 초기화합니다.
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> 새 인스턴스를 초기화합니다.
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, TagList)
public:
Measurement(T value, System::Diagnostics::TagList % tags);
public Measurement (T value, in System.Diagnostics.TagList tags);
new System.Diagnostics.Metrics.Measurement<'T (requires 'T : struct)> : 'T * TagList -> System.Diagnostics.Metrics.Measurement<'T (requires 'T : struct)>
Public Sub New (value As T, ByRef tags As TagList)
매개 변수
- value
- T
- tags
- TagList
적용 대상
Measurement<T>(T, ReadOnlySpan<KeyValuePair<String,Object>>)
- Source:
- Measurement.cs
- Source:
- Measurement.cs
- Source:
- Measurement.cs
지정된 값과 태그 목록을 사용하여 의 Measurement<T> 새 인스턴스를 초기화합니다.
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);
public Measurement (T value, scoped 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>>
측정값과 연결된 태그 목록입니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET