LoggingFields.AddBooleanArray Method

Definition

Overloads

AddBooleanArray(String, Boolean[])

Adds a boolean array field with the specified field name.

AddBooleanArray(String, Boolean[], LoggingFieldFormat)

Adds a boolean array field with the specified field name and format.

AddBooleanArray(String, Boolean[], LoggingFieldFormat, Int32)

Adds a boolean array field with the specified field name, format, and tag.

AddBooleanArray(String, Boolean[])

Adds a boolean array field with the specified field name.

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

Parameters

name
String

Platform::String

winrt::hstring

The name of the event field.

value

Boolean[]

bool[]

The array values for the event field.

Attributes

See also

Applies to

AddBooleanArray(String, Boolean[], LoggingFieldFormat)

Adds a boolean array field with the specified field name and format.

public:
 virtual void AddBooleanArray(Platform::String ^ name, Platform::Array <bool> ^ value, LoggingFieldFormat format) = AddBooleanArray;
/// [Windows.Foundation.Metadata.Overload("AddBooleanArrayWithFormat")]
void AddBooleanArray(winrt::hstring const& name, winrt::array_view <bool> const& value, LoggingFieldFormat const& format);
[Windows.Foundation.Metadata.Overload("AddBooleanArrayWithFormat")]
public void AddBooleanArray(string name, bool[] value, LoggingFieldFormat format);
function addBooleanArray(name, value, format)
Public Sub AddBooleanArray (name As String, value As Boolean(), format As LoggingFieldFormat)

Parameters

name
String

Platform::String

winrt::hstring

The name of the event field.

value

Boolean[]

bool[]

The array of values for the event field.

format
LoggingFieldFormat

The format of the event field. Specifies an optional formatting hint that may be used by Event Tracing for Windows (ETW) tools.

Attributes

See also

Applies to

AddBooleanArray(String, Boolean[], LoggingFieldFormat, Int32)

Adds a boolean array field with the specified field name, format, and tag.

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

Parameters

name
String

Platform::String

winrt::hstring

The name of the event field.

value

Boolean[]

bool[]

The array of values for the event field.

format
LoggingFieldFormat

The format of the event field. Specifies an optional formatting hint that may be used by Event Tracing for Windows (ETW) tools.

tags
Int32

int

The user-defined tag for the event field. Specifies up to twenty-eight bits of user-defined field processing metadata for use by a custom ETW processing tool. The top four bits are reserved and must be set to zero (0).

Attributes

See also

Applies to