Histogram<T>.Record メソッド

定義

オーバーロード

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)

ソース:
Histogram.cs
ソース:
Histogram.cs
ソース:
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>)

ソース:
Histogram.cs
ソース:
Histogram.cs
ソース:
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>[])

ソース:
Histogram.cs
ソース:
Histogram.cs
ソース:
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)

ソース:
Histogram.cs
ソース:
Histogram.cs
ソース:
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>>)

ソース:
Histogram.cs
ソース:
Histogram.cs
ソース:
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);
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>)

ソース:
Histogram.cs
ソース:
Histogram.cs
ソース:
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>

測定に関連付けられている 2 番目のキーと値のペア タグ。

適用対象

Record(T, KeyValuePair<String,Object>, KeyValuePair<String,Object>, KeyValuePair<String,Object>)

ソース:
Histogram.cs
ソース:
Histogram.cs
ソース:
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>

測定に関連付けられている 2 番目のキーと値のペア タグ。

tag3
KeyValuePair<String,Object>

測定に関連付けられている 3 番目のキーと値のペア タグ。

適用対象