Counter<T>.Add メソッド

定義

オーバーロード

Add(T)

測定値の増分値を記録します。

Add(T, KeyValuePair<String,Object>)

測定値の増分値を記録します。

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

測定値の増分値を記録します。

Add(T, TagList)

測定値の増分値を加算します。

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

測定値の増分値を記録します。

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

測定値の増分値を記録します。

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

測定値の増分値を記録します。

Add(T)

ソース:
Counter.cs
ソース:
Counter.cs
ソース:
Counter.cs

測定値の増分値を記録します。

public:
 void Add(T delta);
public void Add (T delta);
member this.Add : 'T -> unit
Public Sub Add (delta As T)

パラメーター

delta
T

増分の測定値。

適用対象

Add(T, KeyValuePair<String,Object>)

ソース:
Counter.cs
ソース:
Counter.cs
ソース:
Counter.cs

測定値の増分値を記録します。

public:
 void Add(T delta, System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^> tag);
public void Add (T delta, System.Collections.Generic.KeyValuePair<string,object?> tag);
member this.Add : 'T * System.Collections.Generic.KeyValuePair<string, obj> -> unit
Public Sub Add (delta As T, tag As KeyValuePair(Of String, Object))

パラメーター

delta
T

増分の測定値。

tag
KeyValuePair<String,Object>

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

適用対象

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

ソース:
Counter.cs
ソース:
Counter.cs
ソース:
Counter.cs

測定値の増分値を記録します。

public:
 void Add(T delta, ... cli::array <System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>> ^ tags);
public void Add (T delta, params System.Collections.Generic.KeyValuePair<string,object>[] tags);
member this.Add : 'T * System.Collections.Generic.KeyValuePair<string, obj>[] -> unit
Public Sub Add (delta As T, ParamArray tags As KeyValuePair(Of String, Object)())

パラメーター

delta
T

増分の測定値。

tags
KeyValuePair<String,Object>[]

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

適用対象

Add(T, TagList)

ソース:
Counter.cs
ソース:
Counter.cs
ソース:
Counter.cs

測定値の増分値を加算します。

public:
 void Add(T delta, System::Diagnostics::TagList % tagList);
public void Add (T delta, in System.Diagnostics.TagList tagList);
member this.Add : 'T * TagList -> unit
Public Sub Add (delta As T, ByRef tagList As TagList)

パラメーター

delta
T

測定値。

tagList
TagList

測定値に関連付けられているタグ。

適用対象

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

ソース:
Counter.cs
ソース:
Counter.cs
ソース:
Counter.cs

測定値の増分値を記録します。

public:
 void Add(T delta, ReadOnlySpan<System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>> tags);
public void Add (T delta, ReadOnlySpan<System.Collections.Generic.KeyValuePair<string,object?>> tags);
member this.Add : 'T * ReadOnlySpan<System.Collections.Generic.KeyValuePair<string, obj>> -> unit
Public Sub Add (delta As T, tags As ReadOnlySpan(Of KeyValuePair(Of String, Object)))

パラメーター

delta
T

増分の測定値。

tags
ReadOnlySpan<KeyValuePair<String,Object>>

測定に関連付けられているキーと値のペア タグのスパン。

適用対象

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

ソース:
Counter.cs
ソース:
Counter.cs
ソース:
Counter.cs

測定値の増分値を記録します。

public:
 void Add(T delta, System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^> tag1, System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^> tag2);
public void Add (T delta, System.Collections.Generic.KeyValuePair<string,object?> tag1, System.Collections.Generic.KeyValuePair<string,object?> tag2);
member this.Add : 'T * System.Collections.Generic.KeyValuePair<string, obj> * System.Collections.Generic.KeyValuePair<string, obj> -> unit
Public Sub Add (delta As T, tag1 As KeyValuePair(Of String, Object), tag2 As KeyValuePair(Of String, Object))

パラメーター

delta
T

増分の測定値。

tag1
KeyValuePair<String,Object>

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

tag2
KeyValuePair<String,Object>

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

適用対象

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

ソース:
Counter.cs
ソース:
Counter.cs
ソース:
Counter.cs

測定値の増分値を記録します。

public:
 void Add(T delta, 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 Add (T delta, System.Collections.Generic.KeyValuePair<string,object?> tag1, System.Collections.Generic.KeyValuePair<string,object?> tag2, System.Collections.Generic.KeyValuePair<string,object?> tag3);
member this.Add : 'T * System.Collections.Generic.KeyValuePair<string, obj> * System.Collections.Generic.KeyValuePair<string, obj> * System.Collections.Generic.KeyValuePair<string, obj> -> unit
Public Sub Add (delta As T, tag1 As KeyValuePair(Of String, Object), tag2 As KeyValuePair(Of String, Object), tag3 As KeyValuePair(Of String, Object))

パラメーター

delta
T

増分の測定値。

tag1
KeyValuePair<String,Object>

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

tag2
KeyValuePair<String,Object>

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

tag3
KeyValuePair<String,Object>

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

適用対象