次の方法で共有


LoggingFields.AddUInt32 メソッド

定義

オーバーロード

AddUInt32(String, UInt32)

指定したフィールド名を持つ 32 ビット符号なし整数フィールドを追加します。

AddUInt32(String, UInt32, LoggingFieldFormat)

指定したフィールド名と形式を持つ 32 ビット符号なし整数フィールドを追加します。

AddUInt32(String, UInt32, LoggingFieldFormat, Int32)

指定したフィールド名、形式、およびタグを持つ 32 ビット符号なし整数フィールドを追加します。

AddUInt32(String, UInt32)

指定したフィールド名を持つ 32 ビット符号なし整数フィールドを追加します。

public:
 virtual void AddUInt32(Platform::String ^ name, unsigned int value) = AddUInt32;
/// [Windows.Foundation.Metadata.Overload("AddUInt32")]
void AddUInt32(winrt::hstring const& name, uint32_t const& value);
[Windows.Foundation.Metadata.Overload("AddUInt32")]
public void AddUInt32(string name, uint value);
function addUInt32(name, value)
Public Sub AddUInt32 (name As String, value As UInteger)

パラメーター

name
String

Platform::String

winrt::hstring

イベント フィールドの名前。

value
UInt32

unsigned int

uint32_t

イベント フィールドの値。

属性

こちらもご覧ください

適用対象

AddUInt32(String, UInt32, LoggingFieldFormat)

指定したフィールド名と形式を持つ 32 ビット符号なし整数フィールドを追加します。

public:
 virtual void AddUInt32(Platform::String ^ name, unsigned int value, LoggingFieldFormat format) = AddUInt32;
/// [Windows.Foundation.Metadata.Overload("AddUInt32WithFormat")]
void AddUInt32(winrt::hstring const& name, uint32_t const& value, LoggingFieldFormat const& format);
[Windows.Foundation.Metadata.Overload("AddUInt32WithFormat")]
public void AddUInt32(string name, uint value, LoggingFieldFormat format);
function addUInt32(name, value, format)
Public Sub AddUInt32 (name As String, value As UInteger, format As LoggingFieldFormat)

パラメーター

name
String

Platform::String

winrt::hstring

イベント フィールドの名前。

value
UInt32

unsigned int

uint32_t

イベント フィールドの値。

format
LoggingFieldFormat

イベント フィールドの形式。 Event Tracing for Windows (ETW) ツールで使用できるオプションの書式設定ヒントを指定します。

属性

こちらもご覧ください

適用対象

AddUInt32(String, UInt32, LoggingFieldFormat, Int32)

指定したフィールド名、形式、およびタグを持つ 32 ビット符号なし整数フィールドを追加します。

public:
 virtual void AddUInt32(Platform::String ^ name, unsigned int value, LoggingFieldFormat format, int tags) = AddUInt32;
/// [Windows.Foundation.Metadata.Overload("AddUInt32WithFormatAndTags")]
void AddUInt32(winrt::hstring const& name, uint32_t const& value, LoggingFieldFormat const& format, int const& tags);
[Windows.Foundation.Metadata.Overload("AddUInt32WithFormatAndTags")]
public void AddUInt32(string name, uint value, LoggingFieldFormat format, int tags);
function addUInt32(name, value, format, tags)
Public Sub AddUInt32 (name As String, value As UInteger, format As LoggingFieldFormat, tags As Integer)

パラメーター

name
String

Platform::String

winrt::hstring

イベント フィールドの名前。

value
UInt32

unsigned int

uint32_t

イベント フィールドの値。

format
LoggingFieldFormat

イベント フィールドの形式。 Event Tracing for Windows (ETW) ツールで使用できるオプションの書式設定ヒントを指定します。

tags
Int32

int

イベント フィールドのユーザー定義タグ。 カスタム ETW 処理ツールで使用するために、最大 28 ビットのユーザー定義フィールド処理メタデータを指定します。 上位 4 ビットは予約済みであり、ゼロ (0) に設定する必要があります。

属性

こちらもご覧ください

適用対象