ホーム › System.Diagnostics.Etw › DECODING_SOURCE
DECODING_SOURCE
列挙型メンバー 5
| 名前 | 10進 | 16進 | 説明 |
|---|---|---|---|
| DecodingSourceXMLFile | 0 | 0x0 | イベント データのソースは XML マニフェストです。 |
| DecodingSourceWbem | 1 | 0x1 | イベント データのソースは WMI MOF クラスです。 |
| DecodingSourceWPP | 2 | 0x2 | イベント データのソースは TMF ファイルです。 |
| DecodingSourceTlg | 3 | 0x3 | イベントが自己記述型イベントであり、TraceLogging メタデータを使用してデコードされたことを示します。 |
| DecodingSourceMax | 4 | 0x4 |
公式ドキュメント
イベント データのソースを定義します。
出典・ライセンス: 上記「公式ドキュメント」の内容は Microsoft の Win32 API ドキュメント(MicrosoftDocs/sdk-api)を日本語に翻訳・改変したものです。© Microsoft Corporation. CC BY 4.0 で提供。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum DECODING_SOURCE : int {
DecodingSourceXMLFile = 0,
DecodingSourceWbem = 1,
DecodingSourceWPP = 2,
DecodingSourceTlg = 3,
DecodingSourceMax = 4
} DECODING_SOURCE;public enum DECODING_SOURCE : int
{
DecodingSourceXMLFile = 0,
DecodingSourceWbem = 1,
DecodingSourceWPP = 2,
DecodingSourceTlg = 3,
DecodingSourceMax = 4,
}Public Enum DECODING_SOURCE As Integer
DecodingSourceXMLFile = 0
DecodingSourceWbem = 1
DecodingSourceWPP = 2
DecodingSourceTlg = 3
DecodingSourceMax = 4
End Enumimport enum
class DECODING_SOURCE(enum.IntEnum):
DecodingSourceXMLFile = 0
DecodingSourceWbem = 1
DecodingSourceWPP = 2
DecodingSourceTlg = 3
DecodingSourceMax = 4// DECODING_SOURCE
pub const DecodingSourceXMLFile: i32 = 0;
pub const DecodingSourceWbem: i32 = 1;
pub const DecodingSourceWPP: i32 = 2;
pub const DecodingSourceTlg: i32 = 3;
pub const DecodingSourceMax: i32 = 4;// DECODING_SOURCE
const (
DecodingSourceXMLFile int32 = 0
DecodingSourceWbem int32 = 1
DecodingSourceWPP int32 = 2
DecodingSourceTlg int32 = 3
DecodingSourceMax int32 = 4
)const
DecodingSourceXMLFile = 0;
DecodingSourceWbem = 1;
DecodingSourceWPP = 2;
DecodingSourceTlg = 3;
DecodingSourceMax = 4;// DECODING_SOURCE
pub const DecodingSourceXMLFile: i32 = 0;
pub const DecodingSourceWbem: i32 = 1;
pub const DecodingSourceWPP: i32 = 2;
pub const DecodingSourceTlg: i32 = 3;
pub const DecodingSourceMax: i32 = 4;const
DecodingSourceXMLFile* = 0
DecodingSourceWbem* = 1
DecodingSourceWPP* = 2
DecodingSourceTlg* = 3
DecodingSourceMax* = 4enum DECODING_SOURCE : int {
DecodingSourceXMLFile = 0,
DecodingSourceWbem = 1,
DecodingSourceWPP = 2,
DecodingSourceTlg = 3,
DecodingSourceMax = 4,
}#define global DecodingSourceXMLFile 0x0
#define global DecodingSourceWbem 0x1
#define global DecodingSourceWPP 0x2
#define global DecodingSourceTlg 0x3
#define global DecodingSourceMax 0x4