Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Counter<T>.Add Method

Definition

Namespace:
System.Diagnostics.Metrics
Assembly:
System.Diagnostics.DiagnosticSource.dll
Package:
System.Diagnostics.DiagnosticSource v11.0.0-preview.5.26302.115

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Overloads

Name Description
Add(T)

Records the increment value of the measurement.

Add(T, KeyValuePair<String,Object>)

Records the increment value of the measurement.

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

Records the increment value of the measurement.

Add(T, TagList)

Adds the increment value of the measurement.

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

Records the increment value of the measurement.

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

Records the increment value of the measurement.

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

Records the increment value of the measurement.

Add(T)

Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs

Records the increment value of the measurement.

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

Parameters

delta
T

The increment measurement.

Applies to

Add(T, KeyValuePair<String,Object>)

Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs

Records the increment value of the measurement.

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))

Parameters

delta
T

The increment measurement.

tag
KeyValuePair<String,Object>

A key-value pair tag associated with the measurement.

Applies to

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

Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs

Records the increment value of the measurement.

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)())

Parameters

delta
T

The increment measurement.

tags
KeyValuePair<String,Object>[]

A list of key-value pair tags associated with the measurement.

Applies to

Add(T, TagList)

Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs

Adds the increment value of the measurement.

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)

Parameters

delta
T

The measurement value.

tagList
TagList

The tags associated with the measurement.

Applies to

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

Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs

Records the increment value of the measurement.

public:
 void Add(T delta, ReadOnlySpan<System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>> tags);
public void Add(T delta, scoped ReadOnlySpan<System.Collections.Generic.KeyValuePair<string,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)))

Parameters

delta
T

The increment measurement.

tags
ReadOnlySpan<KeyValuePair<String,Object>>

A span of key-value pair tags associated with the measurement.

Applies to

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

Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs

Records the increment value of the measurement.

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))

Parameters

delta
T

The increment measurement.

tag1
KeyValuePair<String,Object>

A first key-value pair tag associated with the measurement.

tag2
KeyValuePair<String,Object>

A second key-value pair tag associated with the measurement.

Applies to

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

Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs
Source:
Counter.cs

Records the increment value of the measurement.

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))

Parameters

delta
T

The increment measurement.

tag1
KeyValuePair<String,Object>

A first key-value pair tag associated with the measurement.

tag2
KeyValuePair<String,Object>

A second key-value pair tag associated with the measurement.

tag3
KeyValuePair<String,Object>

A third key-value pair tag associated with the measurement.

Applies to


Feedback

Was this page helpful?