Condividi tramite


LoggingFields.AddString Metodo

Definizione

Overload

AddString(String, String)

Aggiunge un campo String con il nome del campo specificato.

AddString(String, String, LoggingFieldFormat)

Aggiunge un campo String con il nome e il formato del campo specificati.

AddString(String, String, LoggingFieldFormat, Int32)

Aggiunge un campo String con il nome, il formato e i tag di campo specificati.

AddString(String, String)

Aggiunge un campo String con il nome del campo specificato.

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

Parametri

name
String

Platform::String

winrt::hstring

Nome del campo dell'evento.

value
String

Platform::String

winrt::hstring

Valore per il campo dell'evento.

Attributi

Vedi anche

Si applica a

AddString(String, String, LoggingFieldFormat)

Aggiunge un campo String con il nome e il formato del campo specificati.

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

Parametri

name
String

Platform::String

winrt::hstring

Nome del campo dell'evento.

value
String

Platform::String

winrt::hstring

Valore per il 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

AddString(String, String, LoggingFieldFormat, Int32)

Aggiunge un campo String con il nome, il formato e i tag di campo specificati.

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

Parametri

name
String

Platform::String

winrt::hstring

Nome del campo dell'evento.

value
String

Platform::String

winrt::hstring

Valore per il 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