Share via


LoggingFields.AddUInt64 Method

Definition

Overloads

AddUInt64(String, UInt64, LoggingFieldFormat, Int32)

Adds a 64-bit unsigned integer field with the specified field name, format, and tags.

AddUInt64(String, UInt64)

Adds a 64-bit unsigned integer field with the specified field name.

AddUInt64(String, UInt64, LoggingFieldFormat)

Adds a 64-bit unsigned integer field with the specified field name and format.

AddUInt64(String, UInt64, LoggingFieldFormat, Int32)

Adds a 64-bit unsigned integer field with the specified field name, format, and tags.

public:
 virtual void AddUInt64(Platform::String ^ name, unsigned long long value, LoggingFieldFormat format, int tags) = AddUInt64;
/// [Windows.Foundation.Metadata.Overload("AddUInt64WithFormatAndTags")]
void AddUInt64(winrt::hstring const& name, uint64_t const& value, LoggingFieldFormat const& format, int const& tags);
[Windows.Foundation.Metadata.Overload("AddUInt64WithFormatAndTags")]
public void AddUInt64(string name, ulong value, LoggingFieldFormat format, int tags);
function addUInt64(name, value, format, tags)
Public Sub AddUInt64 (name As String, value As ULong, format As LoggingFieldFormat, tags As Integer)

Parameters

name
String

Platform::String

winrt::hstring

Name of the event field.

value
UInt64

unsigned long long

uint64_t

The value 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

AddUInt64(String, UInt64)

Adds a 64-bit unsigned integer field with the specified field name.

public:
 virtual void AddUInt64(Platform::String ^ name, unsigned long long value) = AddUInt64;
/// [Windows.Foundation.Metadata.Overload("AddUInt64")]
void AddUInt64(winrt::hstring const& name, uint64_t const& value);
[Windows.Foundation.Metadata.Overload("AddUInt64")]
public void AddUInt64(string name, ulong value);
function addUInt64(name, value)
Public Sub AddUInt64 (name As String, value As ULong)

Parameters

name
String

Platform::String

winrt::hstring

Name of the event field.

value
UInt64

unsigned long long

uint64_t

The value for the event field.

Attributes

See also

Applies to

AddUInt64(String, UInt64, LoggingFieldFormat)

Adds a 64-bit unsigned integer field with the specified field name and format.

public:
 virtual void AddUInt64(Platform::String ^ name, unsigned long long value, LoggingFieldFormat format) = AddUInt64;
/// [Windows.Foundation.Metadata.Overload("AddUInt64WithFormat")]
void AddUInt64(winrt::hstring const& name, uint64_t const& value, LoggingFieldFormat const& format);
[Windows.Foundation.Metadata.Overload("AddUInt64WithFormat")]
public void AddUInt64(string name, ulong value, LoggingFieldFormat format);
function addUInt64(name, value, format)
Public Sub AddUInt64 (name As String, value As ULong, format As LoggingFieldFormat)

Parameters

name
String

Platform::String

winrt::hstring

Name of the event field.

value
UInt64

unsigned long long

uint64_t

The value 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