LoggingFields.AddDouble Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
AddDouble(String, Double) |
Aggiunge un campo Double con il nome del campo specificato. |
AddDouble(String, Double, LoggingFieldFormat) |
Aggiunge un campo Double con il nome e il formato del campo specificati. |
AddDouble(String, Double, LoggingFieldFormat, Int32) |
Aggiunge un campo Double con il nome del campo, il formato e i tag specificati. |
AddDouble(String, Double)
public:
virtual void AddDouble(Platform::String ^ name, double value) = AddDouble;
/// [Windows.Foundation.Metadata.Overload("AddDouble")]
void AddDouble(winrt::hstring const& name, double const& value);
[Windows.Foundation.Metadata.Overload("AddDouble")]
public void AddDouble(string name, double value);
function addDouble(name, value)
Public Sub AddDouble (name As String, value As Double)
Parametri
- name
-
String
Platform::String
winrt::hstring
Nome del campo evento.
- value
-
Double
double
Valore del campo evento.
- Attributi
Vedi anche
Si applica a
AddDouble(String, Double, LoggingFieldFormat)
public:
virtual void AddDouble(Platform::String ^ name, double value, LoggingFieldFormat format) = AddDouble;
/// [Windows.Foundation.Metadata.Overload("AddDoubleWithFormat")]
void AddDouble(winrt::hstring const& name, double const& value, LoggingFieldFormat const& format);
[Windows.Foundation.Metadata.Overload("AddDoubleWithFormat")]
public void AddDouble(string name, double value, LoggingFieldFormat format);
function addDouble(name, value, format)
Public Sub AddDouble (name As String, value As Double, format As LoggingFieldFormat)
Parametri
- name
-
String
Platform::String
winrt::hstring
Nome del campo evento.
- value
-
Double
double
Valore del campo evento.
- format
- LoggingFieldFormat
Formato del campo evento. Specifica un hint di formattazione facoltativo che può essere usato dagli strumenti di Traccia eventi per Windows (ETW).
- Attributi
Vedi anche
Si applica a
AddDouble(String, Double, LoggingFieldFormat, Int32)
public:
virtual void AddDouble(Platform::String ^ name, double value, LoggingFieldFormat format, int tags) = AddDouble;
/// [Windows.Foundation.Metadata.Overload("AddDoubleWithFormatAndTags")]
void AddDouble(winrt::hstring const& name, double const& value, LoggingFieldFormat const& format, int const& tags);
[Windows.Foundation.Metadata.Overload("AddDoubleWithFormatAndTags")]
public void AddDouble(string name, double value, LoggingFieldFormat format, int tags);
function addDouble(name, value, format, tags)
Public Sub AddDouble (name As String, value As Double, format As LoggingFieldFormat, tags As Integer)
Parametri
- name
-
String
Platform::String
winrt::hstring
Nome del campo evento.
- value
-
Double
double
Valore del campo evento.
- format
- LoggingFieldFormat
Formato del campo evento. Specifica un hint di formattazione facoltativo che può essere usato dagli strumenti di Traccia eventi per Windows (ETW).
- tags
-
Int32
int
Tag definito dall'utente per il campo evento. Specifica fino a venti otto bit di metadati di elaborazione dei campi definiti dall'utente per l'uso da parte di uno strumento di elaborazione ETW personalizzato. I primi quattro bit sono riservati e devono essere impostati su zero (0).
- Attributi