LoggingFields.AddPoint 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
AddPoint(String, Point, LoggingFieldFormat) |
Adds a Point field with the specified name and format. |
AddPoint(String, Point, LoggingFieldFormat, Int32) |
Adds a Point field with the specified name, format, and tags. |
AddPoint(String, Point) |
Adds a Point field with the specified name. |
AddPoint(String, Point, LoggingFieldFormat)
public:
virtual void AddPoint(Platform::String ^ name, Point value, LoggingFieldFormat format) = AddPoint;
/// [Windows.Foundation.Metadata.Overload("AddPointWithFormat")]
void AddPoint(winrt::hstring const& name, Point const& value, LoggingFieldFormat const& format);
[Windows.Foundation.Metadata.Overload("AddPointWithFormat")]
public void AddPoint(string name, Point value, LoggingFieldFormat format);
function addPoint(name, value, format)
Public Sub AddPoint (name As String, value As Point, format As LoggingFieldFormat)
Parameters
- name
-
String
Platform::String
winrt::hstring
Name of the event field.
- value
- Point
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
AddPoint(String, Point, LoggingFieldFormat, Int32)
public:
virtual void AddPoint(Platform::String ^ name, Point value, LoggingFieldFormat format, int tags) = AddPoint;
/// [Windows.Foundation.Metadata.Overload("AddPointWithFormatAndTags")]
void AddPoint(winrt::hstring const& name, Point const& value, LoggingFieldFormat const& format, int const& tags);
[Windows.Foundation.Metadata.Overload("AddPointWithFormatAndTags")]
public void AddPoint(string name, Point value, LoggingFieldFormat format, int tags);
function addPoint(name, value, format, tags)
Public Sub AddPoint (name As String, value As Point, format As LoggingFieldFormat, tags As Integer)
Parameters
- name
-
String
Platform::String
winrt::hstring
Name of the event field.
- value
- Point
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
AddPoint(String, Point)
public:
virtual void AddPoint(Platform::String ^ name, Point value) = AddPoint;
/// [Windows.Foundation.Metadata.Overload("AddPoint")]
void AddPoint(winrt::hstring const& name, Point const& value);
[Windows.Foundation.Metadata.Overload("AddPoint")]
public void AddPoint(string name, Point value);
function addPoint(name, value)
Public Sub AddPoint (name As String, value As Point)
Parameters
- name
-
String
Platform::String
winrt::hstring
Name of the event field.
- value
- Point
The value for the event field.
- Attributes