Condividi tramite


LoggingFields.AddEmpty Metodo

Definizione

Overload

AddEmpty(String, LoggingFieldFormat)

Aggiunge un campo vuoto.

AddEmpty(String, LoggingFieldFormat, Int32)

Aggiunge un campo vuoto.

AddEmpty(String)

Aggiunge un campo vuoto.

AddEmpty(String, LoggingFieldFormat)

Aggiunge un campo vuoto.

public:
 virtual void AddEmpty(Platform::String ^ name, LoggingFieldFormat format) = AddEmpty;
/// [Windows.Foundation.Metadata.Overload("AddEmptyWithFormat")]
void AddEmpty(winrt::hstring const& name, LoggingFieldFormat const& format);
[Windows.Foundation.Metadata.Overload("AddEmptyWithFormat")]
public void AddEmpty(string name, LoggingFieldFormat format);
function addEmpty(name, format)
Public Sub AddEmpty (name As String, format As LoggingFieldFormat)

Parametri

name
String

Platform::String

winrt::hstring

Nome del campo dell'evento.

format
LoggingFieldFormat

Formato del campo dell'evento. Specifica un hint di formattazione facoltativo che può essere utilizzato dagli strumenti ETW (Event Tracing for Windows).

Attributi

Vedi anche

Si applica a

AddEmpty(String, LoggingFieldFormat, Int32)

Aggiunge un campo vuoto.

public:
 virtual void AddEmpty(Platform::String ^ name, LoggingFieldFormat format, int tags) = AddEmpty;
/// [Windows.Foundation.Metadata.Overload("AddEmptyWithFormatAndTags")]
void AddEmpty(winrt::hstring const& name, LoggingFieldFormat const& format, int const& tags);
[Windows.Foundation.Metadata.Overload("AddEmptyWithFormatAndTags")]
public void AddEmpty(string name, LoggingFieldFormat format, int tags);
function addEmpty(name, format, tags)
Public Sub AddEmpty (name As String, format As LoggingFieldFormat, tags As Integer)

Parametri

name
String

Platform::String

winrt::hstring

Nome del campo dell'evento.

format
LoggingFieldFormat

Formato del campo dell'evento. Specifica un hint di formattazione facoltativo che può essere utilizzato dagli strumenti ETW (Event Tracing for Windows).

tags
Int32

int

Tag definito dall'utente per il campo dell'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

Vedi anche

Si applica a

AddEmpty(String)

Aggiunge un campo vuoto.

public:
 virtual void AddEmpty(Platform::String ^ name) = AddEmpty;
/// [Windows.Foundation.Metadata.Overload("AddEmpty")]
void AddEmpty(winrt::hstring const& name);
[Windows.Foundation.Metadata.Overload("AddEmpty")]
public void AddEmpty(string name);
function addEmpty(name)
Public Sub AddEmpty (name As String)

Parametri

name
String

Platform::String

winrt::hstring

Nome del campo dell'evento.

Attributi

Commenti

Un campo vuoto ha un nome, un formato facoltativo e tag, ma nessun valore.

Vedi anche

Si applica a