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