Histogram<T>.Record 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
Record(T) |
측정값을 기록합니다. |
Record(T, KeyValuePair<String,Object>) |
측정값을 기록합니다. |
Record(T, KeyValuePair<String,Object>[]) |
측정값을 기록합니다. |
Record(T, TagList) |
측정값을 기록합니다. |
Record(T, ReadOnlySpan<KeyValuePair<String,Object>>) |
측정값을 기록합니다. |
Record(T, KeyValuePair<String,Object>, KeyValuePair<String,Object>) |
측정값을 기록합니다. |
Record(T, KeyValuePair<String,Object>, KeyValuePair<String,Object>, KeyValuePair<String,Object>) |
측정값을 기록합니다. |
Record(T)
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
측정값을 기록합니다.
public:
void Record(T value);
public void Record (T value);
member this.Record : 'T -> unit
Public Sub Record (value As T)
매개 변수
- value
- T
측정값입니다.
적용 대상
Record(T, KeyValuePair<String,Object>)
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
측정값을 기록합니다.
public:
void Record(T value, System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^> tag);
public void Record (T value, System.Collections.Generic.KeyValuePair<string,object?> tag);
member this.Record : 'T * System.Collections.Generic.KeyValuePair<string, obj> -> unit
Public Sub Record (value As T, tag As KeyValuePair(Of String, Object))
매개 변수
- value
- T
측정값입니다.
- tag
- KeyValuePair<String,Object>
측정값과 연결된 키-값 쌍 태그입니다.
적용 대상
Record(T, KeyValuePair<String,Object>[])
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
측정값을 기록합니다.
public:
void Record(T value, ... cli::array <System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>> ^ tags);
public void Record (T value, params System.Collections.Generic.KeyValuePair<string,object>[] tags);
member this.Record : 'T * System.Collections.Generic.KeyValuePair<string, obj>[] -> unit
Public Sub Record (value As T, ParamArray tags As KeyValuePair(Of String, Object)())
매개 변수
- value
- T
측정값입니다.
- tags
- KeyValuePair<String,Object>[]
측정값과 연결된 키-값 쌍 태그 목록입니다.
적용 대상
Record(T, TagList)
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
측정값을 기록합니다.
public:
void Record(T value, System::Diagnostics::TagList % tagList);
public void Record (T value, in System.Diagnostics.TagList tagList);
member this.Record : 'T * TagList -> unit
Public Sub Record (value As T, ByRef tagList As TagList)
매개 변수
- value
- T
측정값입니다.
- tagList
- TagList
측정값과 연결된 태그입니다.
적용 대상
Record(T, ReadOnlySpan<KeyValuePair<String,Object>>)
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
측정값을 기록합니다.
public:
void Record(T value, ReadOnlySpan<System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>> tags);
public void Record (T value, ReadOnlySpan<System.Collections.Generic.KeyValuePair<string,object?>> tags);
public void Record (T value, scoped ReadOnlySpan<System.Collections.Generic.KeyValuePair<string,object?>> tags);
member this.Record : 'T * ReadOnlySpan<System.Collections.Generic.KeyValuePair<string, obj>> -> unit
Public Sub Record (value As T, tags As ReadOnlySpan(Of KeyValuePair(Of String, Object)))
매개 변수
- value
- T
측정값입니다.
- tags
- ReadOnlySpan<KeyValuePair<String,Object>>
측정값과 연결된 키-값 쌍 태그의 범위입니다.
적용 대상
Record(T, KeyValuePair<String,Object>, KeyValuePair<String,Object>)
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
측정값을 기록합니다.
public:
void Record(T value, System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^> tag1, System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^> tag2);
public void Record (T value, System.Collections.Generic.KeyValuePair<string,object?> tag1, System.Collections.Generic.KeyValuePair<string,object?> tag2);
member this.Record : 'T * System.Collections.Generic.KeyValuePair<string, obj> * System.Collections.Generic.KeyValuePair<string, obj> -> unit
Public Sub Record (value As T, tag1 As KeyValuePair(Of String, Object), tag2 As KeyValuePair(Of String, Object))
매개 변수
- value
- T
측정값입니다.
- tag1
- KeyValuePair<String,Object>
측정값과 연결된 첫 번째 키-값 쌍 태그입니다.
- tag2
- KeyValuePair<String,Object>
측정값과 연결된 두 번째 키-값 쌍 태그입니다.
적용 대상
Record(T, KeyValuePair<String,Object>, KeyValuePair<String,Object>, KeyValuePair<String,Object>)
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
측정값을 기록합니다.
public:
void Record(T value, System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^> tag1, System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^> tag2, System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^> tag3);
public void Record (T value, System.Collections.Generic.KeyValuePair<string,object?> tag1, System.Collections.Generic.KeyValuePair<string,object?> tag2, System.Collections.Generic.KeyValuePair<string,object?> tag3);
member this.Record : 'T * System.Collections.Generic.KeyValuePair<string, obj> * System.Collections.Generic.KeyValuePair<string, obj> * System.Collections.Generic.KeyValuePair<string, obj> -> unit
Public Sub Record (value As T, tag1 As KeyValuePair(Of String, Object), tag2 As KeyValuePair(Of String, Object), tag3 As KeyValuePair(Of String, Object))
매개 변수
- value
- T
측정값입니다.
- tag1
- KeyValuePair<String,Object>
측정값과 연결된 첫 번째 키-값 쌍 태그입니다.
- tag2
- KeyValuePair<String,Object>
측정값과 연결된 두 번째 키-값 쌍 태그입니다.
- tag3
- KeyValuePair<String,Object>
측정값과 연결된 세 번째 키-값 쌍 태그입니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET