Instrument<T>.RecordMeasurement 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
RecordMeasurement(T) |
Registra una medida notificando a todos los MeterListener objetos que escuchan este instrumento. |
RecordMeasurement(T, KeyValuePair<String,Object>) |
Registra una medida notificando a todos los MeterListener objetos que escuchan este instrumento. |
RecordMeasurement(T, TagList) |
Registra una medida notificando a todos los MeterListener objetos que escuchan este instrumento. |
RecordMeasurement(T, ReadOnlySpan<KeyValuePair<String,Object>>) |
Registra una medida notificando a todos los MeterListener objetos que escuchan este instrumento. |
RecordMeasurement(T, KeyValuePair<String,Object>, KeyValuePair<String,Object>) |
Registra una medida notificando a todos los MeterListener objetos que escuchan este instrumento. |
RecordMeasurement(T, KeyValuePair<String,Object>, KeyValuePair<String,Object>, KeyValuePair<String,Object>) |
Registra una medida notificando a todos los MeterListener objetos que escuchan este instrumento. |
RecordMeasurement(T)
- Source:
- Instrument.common.cs
- Source:
- Instrument.common.cs
- Source:
- Instrument.common.cs
Registra una medida notificando a todos los MeterListener objetos que escuchan este instrumento.
protected:
void RecordMeasurement(T measurement);
protected void RecordMeasurement (T measurement);
member this.RecordMeasurement : 'T -> unit
Protected Sub RecordMeasurement (measurement As T)
Parámetros
- measurement
- T
Valor de medida.
Se aplica a
RecordMeasurement(T, KeyValuePair<String,Object>)
- Source:
- Instrument.netcore.cs
- Source:
- Instrument.netcore.cs
- Source:
- Instrument.netcore.cs
Registra una medida notificando a todos los MeterListener objetos que escuchan este instrumento.
protected:
void RecordMeasurement(T measurement, System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^> tag);
protected void RecordMeasurement (T measurement, System.Collections.Generic.KeyValuePair<string,object?> tag);
member this.RecordMeasurement : 'T * System.Collections.Generic.KeyValuePair<string, obj> -> unit
Protected Sub RecordMeasurement (measurement As T, tag As KeyValuePair(Of String, Object))
Parámetros
- measurement
- T
Valor de medida.
- tag
- KeyValuePair<String,Object>
Etiqueta de par clave-valor asociada a la medida.
Se aplica a
RecordMeasurement(T, TagList)
- Source:
- Instrument.netcore.cs
- Source:
- Instrument.netcore.cs
- Source:
- Instrument.netcore.cs
Registra una medida notificando a todos los MeterListener objetos que escuchan este instrumento.
protected:
void RecordMeasurement(T measurement, System::Diagnostics::TagList % tagList);
protected void RecordMeasurement (T measurement, in System.Diagnostics.TagList tagList);
member this.RecordMeasurement : 'T * TagList -> unit
Protected Sub RecordMeasurement (measurement As T, ByRef tagList As TagList)
Parámetros
- measurement
- T
Valor de medida.
- tagList
- TagList
Etiquetas asociadas a la medida.
Se aplica a
RecordMeasurement(T, ReadOnlySpan<KeyValuePair<String,Object>>)
- Source:
- Instrument.common.cs
- Source:
- Instrument.common.cs
- Source:
- Instrument.common.cs
Registra una medida notificando a todos los MeterListener objetos que escuchan este instrumento.
protected:
void RecordMeasurement(T measurement, ReadOnlySpan<System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>> tags);
protected void RecordMeasurement (T measurement, ReadOnlySpan<System.Collections.Generic.KeyValuePair<string,object?>> tags);
member this.RecordMeasurement : 'T * ReadOnlySpan<System.Collections.Generic.KeyValuePair<string, obj>> -> unit
Protected Sub RecordMeasurement (measurement As T, tags As ReadOnlySpan(Of KeyValuePair(Of String, Object)))
Parámetros
- measurement
- T
Valor de medida.
- tags
- ReadOnlySpan<KeyValuePair<String,Object>>
Intervalo de etiquetas de par clave-valor asociadas a la medida.
Se aplica a
RecordMeasurement(T, KeyValuePair<String,Object>, KeyValuePair<String,Object>)
- Source:
- Instrument.netcore.cs
- Source:
- Instrument.netcore.cs
- Source:
- Instrument.netcore.cs
Registra una medida notificando a todos los MeterListener objetos que escuchan este instrumento.
protected:
void RecordMeasurement(T measurement, System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^> tag1, System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^> tag2);
protected void RecordMeasurement (T measurement, System.Collections.Generic.KeyValuePair<string,object?> tag1, System.Collections.Generic.KeyValuePair<string,object?> tag2);
member this.RecordMeasurement : 'T * System.Collections.Generic.KeyValuePair<string, obj> * System.Collections.Generic.KeyValuePair<string, obj> -> unit
Protected Sub RecordMeasurement (measurement As T, tag1 As KeyValuePair(Of String, Object), tag2 As KeyValuePair(Of String, Object))
Parámetros
- measurement
- 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
RecordMeasurement(T, KeyValuePair<String,Object>, KeyValuePair<String,Object>, KeyValuePair<String,Object>)
- Source:
- Instrument.netcore.cs
- Source:
- Instrument.netcore.cs
- Source:
- Instrument.netcore.cs
Registra una medida notificando a todos los MeterListener objetos que escuchan este instrumento.
protected:
void RecordMeasurement(T measurement, 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);
protected void RecordMeasurement (T measurement, System.Collections.Generic.KeyValuePair<string,object?> tag1, System.Collections.Generic.KeyValuePair<string,object?> tag2, System.Collections.Generic.KeyValuePair<string,object?> tag3);
member this.RecordMeasurement : 'T * System.Collections.Generic.KeyValuePair<string, obj> * System.Collections.Generic.KeyValuePair<string, obj> * System.Collections.Generic.KeyValuePair<string, obj> -> unit
Protected Sub RecordMeasurement (measurement As T, tag1 As KeyValuePair(Of String, Object), tag2 As KeyValuePair(Of String, Object), tag3 As KeyValuePair(Of String, Object))
Parámetros
- measurement
- 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.