Condividi tramite


LoggingFields.AddUInt8Array Metodo

Definizione

Overload

AddUInt8Array(String, Byte[])

Aggiunge un campo matrice integer senza segno a 8 bit con il nome del campo specificato.

AddUInt8Array(String, Byte[], LoggingFieldFormat)

Aggiunge un campo matrice integer senza segno a 8 bit con il nome e il formato del campo specificati.

AddUInt8Array(String, Byte[], LoggingFieldFormat, Int32)

Aggiunge un campo matrice integer senza segno a 8 bit con il nome del campo, il formato e i tag specificati.

AddUInt8Array(String, Byte[])

Aggiunge un campo matrice integer senza segno a 8 bit con il nome del campo specificato.

public:
 virtual void AddUInt8Array(Platform::String ^ name, Platform::Array <byte> ^ value) = AddUInt8Array;
/// [Windows.Foundation.Metadata.Overload("AddUInt8Array")]
void AddUInt8Array(winrt::hstring const& name, winrt::array_view <byte> const& value);
[Windows.Foundation.Metadata.Overload("AddUInt8Array")]
public void AddUInt8Array(string name, byte[] value);
function addUInt8Array(name, value)
Public Sub AddUInt8Array (name As String, value As Byte())

Parametri

name
String

Platform::String

winrt::hstring

Nome del campo evento.

value

Byte[]

byte[]

Valore per il campo evento. Il formato per la matrice è binario.

Attributi

Vedi anche

Si applica a

AddUInt8Array(String, Byte[], LoggingFieldFormat)

Aggiunge un campo matrice integer senza segno a 8 bit con il nome e il formato del campo specificati.

public:
 virtual void AddUInt8Array(Platform::String ^ name, Platform::Array <byte> ^ value, LoggingFieldFormat format) = AddUInt8Array;
/// [Windows.Foundation.Metadata.Overload("AddUInt8ArrayWithFormat")]
void AddUInt8Array(winrt::hstring const& name, winrt::array_view <byte> const& value, LoggingFieldFormat const& format);
[Windows.Foundation.Metadata.Overload("AddUInt8ArrayWithFormat")]
public void AddUInt8Array(string name, byte[] value, LoggingFieldFormat format);
function addUInt8Array(name, value, format)
Public Sub AddUInt8Array (name As String, value As Byte(), format As LoggingFieldFormat)

Parametri

name
String

Platform::String

winrt::hstring

Nome del campo evento.

value

Byte[]

byte[]

Valore per il campo evento. Il formato predefinito per la matrice è binario. Vedere la sezione osservazioni per altri formati che possono essere specificati.

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

Commenti

Usare il parametro di formato per specificare il formato della matrice. È possibile usare i formati LoggingFieldFormat seguenti:

Valore Descrizione
Predefinito Non è specificato alcun formato.
Boolean I dati vengono trattati come matrice di valori booleani
Valore esadecimale I dati vengono trattati come matrice di interi a 8 bit, formattati come esadecimali
Ipv6Address I dati vengono trattati come indirizzo IPv6
Json I dati vengono trattati come stringa JavaScript (MBCS) Multi-Byte Character Set (JSON)
Con segno I dati vengono trattati come matrice di interi a 8 bit firmati
string I dati vengono trattati come stringa MBCS
Socketaddress I dati vengono trattati come sockaddr
Senza segno I dati vengono trattati come matrice di interi senza segno a 8 bit
XML I dati vengono trattati come stringa XML MBCS

Vedi anche

Si applica a

AddUInt8Array(String, Byte[], LoggingFieldFormat, Int32)

Aggiunge un campo matrice integer senza segno a 8 bit con il nome del campo, il formato e i tag specificati.

public:
 virtual void AddUInt8Array(Platform::String ^ name, Platform::Array <byte> ^ value, LoggingFieldFormat format, int tags) = AddUInt8Array;
/// [Windows.Foundation.Metadata.Overload("AddUInt8ArrayWithFormatAndTags")]
void AddUInt8Array(winrt::hstring const& name, winrt::array_view <byte> const& value, LoggingFieldFormat const& format, int const& tags);
[Windows.Foundation.Metadata.Overload("AddUInt8ArrayWithFormatAndTags")]
public void AddUInt8Array(string name, byte[] value, LoggingFieldFormat format, int tags);
function addUInt8Array(name, value, format, tags)
Public Sub AddUInt8Array (name As String, value As Byte(), format As LoggingFieldFormat, tags As Integer)

Parametri

name
String

Platform::String

winrt::hstring

Nome del campo evento.

value

Byte[]

byte[]

Valore per il campo evento. Il formato predefinito per la matrice è binario. Vedere la sezione osservazioni per altri formati che possono essere specificati.

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

Commenti

Usare il parametro di formato per specificare il formato della matrice. È possibile usare i formati LoggingFieldFormat seguenti:

PredefinitoNon è specificato alcun formato.
BooleanI dati vengono trattati come matrice di valori booleani
Valore esadecimaleI dati vengono trattati come matrice di interi a 8 bit, formattati come esadecimali
Ipv6AddressI dati vengono trattati come indirizzo IPv6
JsonI dati vengono trattati come stringa JavaScript (MBCS) Multi-Byte Character Set (JSON)
Con segnoI dati vengono trattati come matrice di interi a 8 bit firmati
stringI dati vengono trattati come stringa MBCS
SocketaddressI dati vengono trattati come [sockaddr](/windows/desktop/WinSock/sockaddr-2)
Senza segnoI dati vengono trattati come matrice di interi senza segno a 8 bit
XMLI dati vengono trattati come stringa XML MBCS

Vedi anche

Si applica a