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