LoggingFields.AddSizeArray 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
AddSizeArray(String, Size[]) |
Adds a Size array field with the specified field name. |
AddSizeArray(String, Size[], LoggingFieldFormat) |
Adds a Size array field with the specified field name and format. |
AddSizeArray(String, Size[], LoggingFieldFormat, Int32) |
Adds a Size array field with the specified field name, format, and tags. |
AddSizeArray(String, Size[])
public:
virtual void AddSizeArray(Platform::String ^ name, Platform::Array <Size> ^ value) = AddSizeArray;
/// [Windows.Foundation.Metadata.Overload("AddSizeArray")]
void AddSizeArray(winrt::hstring const& name, winrt::array_view <Size> const& value);
[Windows.Foundation.Metadata.Overload("AddSizeArray")]
public void AddSizeArray(string name, Size[] value);
function addSizeArray(name, value)
Public Sub AddSizeArray (name As String, value As Size())
Parameters
- name
-
String
Platform::String
winrt::hstring
The name of the field.
- value
- Size[]
The value for the event field.
- Attributes
See also
- AddSizeArray(String, Size[], LoggingFieldFormat)
- AddSizeArray(String, Size[], LoggingFieldFormat, Int32)
Applies to
AddSizeArray(String, Size[], LoggingFieldFormat)
public:
virtual void AddSizeArray(Platform::String ^ name, Platform::Array <Size> ^ value, LoggingFieldFormat format) = AddSizeArray;
/// [Windows.Foundation.Metadata.Overload("AddSizeArrayWithFormat")]
void AddSizeArray(winrt::hstring const& name, winrt::array_view <Size> const& value, LoggingFieldFormat const& format);
[Windows.Foundation.Metadata.Overload("AddSizeArrayWithFormat")]
public void AddSizeArray(string name, Size[] value, LoggingFieldFormat format);
function addSizeArray(name, value, format)
Public Sub AddSizeArray (name As String, value As Size(), format As LoggingFieldFormat)
Parameters
- name
-
String
Platform::String
winrt::hstring
Name of the event field.
- value
- Size[]
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
AddSizeArray(String, Size[], LoggingFieldFormat, Int32)
public:
virtual void AddSizeArray(Platform::String ^ name, Platform::Array <Size> ^ value, LoggingFieldFormat format, int tags) = AddSizeArray;
/// [Windows.Foundation.Metadata.Overload("AddSizeArrayWithFormatAndTags")]
void AddSizeArray(winrt::hstring const& name, winrt::array_view <Size> const& value, LoggingFieldFormat const& format, int const& tags);
[Windows.Foundation.Metadata.Overload("AddSizeArrayWithFormatAndTags")]
public void AddSizeArray(string name, Size[] value, LoggingFieldFormat format, int tags);
function addSizeArray(name, value, format, tags)
Public Sub AddSizeArray (name As String, value As Size(), format As LoggingFieldFormat, tags As Integer)
Parameters
- name
-
String
Platform::String
winrt::hstring
Name of the event field.
- value
- Size[]
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