LoggingFields.AddTimeSpan Method

Definition

Overloads

AddTimeSpan(String, TimeSpan)

Adds a time span field with the specified field name.

AddTimeSpan(String, TimeSpan, LoggingFieldFormat)

Adds a time span field with the specified field name and format.

AddTimeSpan(String, TimeSpan, LoggingFieldFormat, Int32)

Adds a time span field with the specified field name, format, and tags.

AddTimeSpan(String, TimeSpan)

Adds a time span field with the specified field name.

public:
 virtual void AddTimeSpan(Platform::String ^ name, TimeSpan value) = AddTimeSpan;
/// [Windows.Foundation.Metadata.Overload("AddTimeSpan")]
void AddTimeSpan(winrt::hstring const& name, TimeSpan const& value);
[Windows.Foundation.Metadata.Overload("AddTimeSpan")]
public void AddTimeSpan(string name, System.TimeSpan value);
function addTimeSpan(name, value)
Public Sub AddTimeSpan (name As String, value As TimeSpan)

Parameters

name
String

Platform::String

winrt::hstring

Name of the event field.

value
TimeSpan TimeSpan

The value for the event field.

Attributes

See also

Applies to

AddTimeSpan(String, TimeSpan, LoggingFieldFormat)

Adds a time span field with the specified field name and format.

public:
 virtual void AddTimeSpan(Platform::String ^ name, TimeSpan value, LoggingFieldFormat format) = AddTimeSpan;
/// [Windows.Foundation.Metadata.Overload("AddTimeSpanWithFormat")]
void AddTimeSpan(winrt::hstring const& name, TimeSpan const& value, LoggingFieldFormat const& format);
[Windows.Foundation.Metadata.Overload("AddTimeSpanWithFormat")]
public void AddTimeSpan(string name, System.TimeSpan value, LoggingFieldFormat format);
function addTimeSpan(name, value, format)
Public Sub AddTimeSpan (name As String, value As TimeSpan, format As LoggingFieldFormat)

Parameters

name
String

Platform::String

winrt::hstring

Name of the event field.

value
TimeSpan TimeSpan

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

AddTimeSpan(String, TimeSpan, LoggingFieldFormat, Int32)

Adds a time span field with the specified field name, format, and tags.

public:
 virtual void AddTimeSpan(Platform::String ^ name, TimeSpan value, LoggingFieldFormat format, int tags) = AddTimeSpan;
/// [Windows.Foundation.Metadata.Overload("AddTimeSpanWithFormatAndTags")]
void AddTimeSpan(winrt::hstring const& name, TimeSpan const& value, LoggingFieldFormat const& format, int const& tags);
[Windows.Foundation.Metadata.Overload("AddTimeSpanWithFormatAndTags")]
public void AddTimeSpan(string name, System.TimeSpan value, LoggingFieldFormat format, int tags);
function addTimeSpan(name, value, format, tags)
Public Sub AddTimeSpan (name As String, value As TimeSpan, format As LoggingFieldFormat, tags As Integer)

Parameters

name
String

Platform::String

winrt::hstring

Name of the event field.

value
TimeSpan TimeSpan

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