Histogram<T>.Record Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
Record(T) |
Registra un valor de medida. |
Record(T, KeyValuePair<String,Object>) |
Registra un valor de medida. |
Record(T, KeyValuePair<String,Object>[]) |
Registra un valor de medida. |
Record(T, TagList) |
Registra un valor de medida. |
Record(T, ReadOnlySpan<KeyValuePair<String,Object>>) |
Registra un valor de medida. |
Record(T, KeyValuePair<String,Object>, KeyValuePair<String,Object>) |
Registra un valor de medida. |
Record(T, KeyValuePair<String,Object>, KeyValuePair<String,Object>, KeyValuePair<String,Object>) |
Registra un valor de medida. |
Record(T)
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
Registra un valor de medida.
public:
void Record(T value);
public void Record (T value);
member this.Record : 'T -> unit
Public Sub Record (value As T)
Parámetros
- value
- T
Valor de medida.
Se aplica a
Record(T, KeyValuePair<String,Object>)
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
Registra un valor de medida.
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))
Parámetros
- value
- T
Valor de medida.
- tag
- KeyValuePair<String,Object>
Etiqueta de par clave-valor asociada a la medida.
Se aplica a
Record(T, KeyValuePair<String,Object>[])
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
Registra un valor de medida.
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)())
Parámetros
- value
- T
Valor de medida.
- tags
- KeyValuePair<String,Object>[]
Lista de etiquetas de par clave-valor asociadas a la medida.
Se aplica a
Record(T, TagList)
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
Registra un valor de medida.
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)
Parámetros
- value
- T
Valor de medida.
- tagList
- TagList
Etiquetas asociadas a la medida.
Se aplica a
Record(T, ReadOnlySpan<KeyValuePair<String,Object>>)
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
Registra un valor de medida.
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)))
Parámetros
- value
- T
Valor de medida.
- tags
- ReadOnlySpan<KeyValuePair<String,Object>>
Intervalo de etiquetas de par clave-valor asociadas a la medida.
Se aplica a
Record(T, KeyValuePair<String,Object>, KeyValuePair<String,Object>)
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
Registra un valor de medida.
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))
Parámetros
- value
- T
Valor de medida.
- tag1
- KeyValuePair<String,Object>
Una primera etiqueta de par clave-valor asociada a la medida.
- tag2
- KeyValuePair<String,Object>
Segunda etiqueta de par clave-valor asociada a la medida.
Se aplica a
Record(T, KeyValuePair<String,Object>, KeyValuePair<String,Object>, KeyValuePair<String,Object>)
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
- Source:
- Histogram.cs
Registra un valor de medida.
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))
Parámetros
- value
- T
Valor de medida.
- tag1
- KeyValuePair<String,Object>
Una primera etiqueta de par clave-valor asociada a la medida.
- tag2
- KeyValuePair<String,Object>
Segunda etiqueta de par clave-valor asociada a la medida.
- tag3
- KeyValuePair<String,Object>
Tercera etiqueta de par clave-valor asociada a la medida.