Partager via


LoggingFields.AddInt32Array Méthode

Définition

Surcharges

AddInt32Array(String, Int32[])

Ajoute un champ de tableau d’entiers 32 bits avec le nom de champ spécifié.

AddInt32Array(String, Int32[], LoggingFieldFormat)

Ajoute un champ de tableau d’entiers 32 bits avec le nom et le format de champ spécifiés.

AddInt32Array(String, Int32[], LoggingFieldFormat, Int32)

Ajoute un champ de tableau d’entiers 32 bits avec le nom de champ, le format et les balises spécifiés.

AddInt32Array(String, Int32[])

Ajoute un champ de tableau d’entiers 32 bits avec le nom de champ spécifié.

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

Paramètres

name
String

Platform::String

winrt::hstring

Nom du champ d’événement.

value

Int32[]

int[]

Valeurs de tableau pour le champ d’événement.

Attributs

Voir aussi

S’applique à

AddInt32Array(String, Int32[], LoggingFieldFormat)

Ajoute un champ de tableau d’entiers 32 bits avec le nom et le format de champ spécifiés.

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

Paramètres

name
String

Platform::String

winrt::hstring

Nom du champ d’événement.

value

Int32[]

int[]

Valeurs de tableau pour le champ d’événement.

format
LoggingFieldFormat

Format du champ d’événement. Spécifie un indicateur de mise en forme facultatif qui peut être utilisé par les outils de suivi d’événements pour Windows (ETW).

Attributs

Voir aussi

S’applique à

AddInt32Array(String, Int32[], LoggingFieldFormat, Int32)

Ajoute un champ de tableau d’entiers 32 bits avec le nom de champ, le format et les balises spécifiés.

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

Paramètres

name
String

Platform::String

winrt::hstring

Nom du champ d’événement.

value

Int32[]

int[]

Valeurs de tableau pour le champ d’événement.

format
LoggingFieldFormat

Format du champ d’événement. Spécifie un indicateur de mise en forme facultatif qui peut être utilisé par les outils de suivi d’événements pour Windows (ETW).

tags
Int32

int

Balise définie par l’utilisateur pour le champ d’événement. Spécifie jusqu’à vingt-huit bits de métadonnées de traitement de champ définies par l’utilisateur à utiliser par un outil de traitement ETW personnalisé. Les quatre premiers bits sont réservés et doivent être définis sur zéro (0).

Attributs

Voir aussi

S’applique à