LoggingFields.AddInt64 Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AddInt64(String, Int64) |
Adds a 64-bit integer array field with the specified field name. |
AddInt64(String, Int64, LoggingFieldFormat) |
Adds a 64-bit integer array field with the specified field name and format. |
AddInt64(String, Int64, LoggingFieldFormat, Int32) |
Adds a 64-bit integer field with the specified field name, format, and tags. |
AddInt64(String, Int64)
Adds a 64-bit integer array field with the specified field name.
public:
virtual void AddInt64(Platform::String ^ name, long long value) = AddInt64;
/// [Windows.Foundation.Metadata.Overload("AddInt64")]
void AddInt64(winrt::hstring const& name, long const& value);
[Windows.Foundation.Metadata.Overload("AddInt64")]
public void AddInt64(string name, long value);
function addInt64(name, value)
Public Sub AddInt64 (name As String, value As Long)
Parameters
- name
-
String
Platform::String
winrt::hstring
Name of the event field.
- value
-
Int64
long long
long
The array values for the event field.
- Attributes
See also
Applies to
AddInt64(String, Int64, LoggingFieldFormat)
Adds a 64-bit integer array field with the specified field name and format.
public:
virtual void AddInt64(Platform::String ^ name, long long value, LoggingFieldFormat format) = AddInt64;
/// [Windows.Foundation.Metadata.Overload("AddInt64WithFormat")]
void AddInt64(winrt::hstring const& name, long const& value, LoggingFieldFormat const& format);
[Windows.Foundation.Metadata.Overload("AddInt64WithFormat")]
public void AddInt64(string name, long value, LoggingFieldFormat format);
function addInt64(name, value, format)
Public Sub AddInt64 (name As String, value As Long, format As LoggingFieldFormat)
Parameters
- name
-
String
Platform::String
winrt::hstring
Name of the event field.
- value
-
Int64
long long
long
The array 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
AddInt64(String, Int64, LoggingFieldFormat, Int32)
Adds a 64-bit integer field with the specified field name, format, and tags.
public:
virtual void AddInt64(Platform::String ^ name, long long value, LoggingFieldFormat format, int tags) = AddInt64;
/// [Windows.Foundation.Metadata.Overload("AddInt64WithFormatAndTags")]
void AddInt64(winrt::hstring const& name, long const& value, LoggingFieldFormat const& format, int const& tags);
[Windows.Foundation.Metadata.Overload("AddInt64WithFormatAndTags")]
public void AddInt64(string name, long value, LoggingFieldFormat format, int tags);
function addInt64(name, value, format, tags)
Public Sub AddInt64 (name As String, value As Long, format As LoggingFieldFormat, tags As Integer)
Parameters
- name
-
String
Platform::String
winrt::hstring
Name of the event field.
- value
-
Int64
long long
long
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