ホーム › System.Diagnostics.Etw › PROPERTY_FLAGS
PROPERTY_FLAGS
列挙型メンバー 8
| 名前 | 10進 | 16進 |
|---|---|---|
| PropertyStruct | 1 | 0x1 |
| PropertyParamLength | 2 | 0x2 |
| PropertyParamCount | 4 | 0x4 |
| PropertyWBEMXmlFragment | 8 | 0x8 |
| PropertyParamFixedLength | 16 | 0x10 |
| PropertyParamFixedCount | 32 | 0x20 |
| PropertyHasTags | 64 | 0x40 |
| PropertyHasCustomSchema | 128 | 0x80 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum PROPERTY_FLAGS : int {
PropertyStruct = 1,
PropertyParamLength = 2,
PropertyParamCount = 4,
PropertyWBEMXmlFragment = 8,
PropertyParamFixedLength = 16,
PropertyParamFixedCount = 32,
PropertyHasTags = 64,
PropertyHasCustomSchema = 128
} PROPERTY_FLAGS;public enum PROPERTY_FLAGS : int
{
PropertyStruct = 1,
PropertyParamLength = 2,
PropertyParamCount = 4,
PropertyWBEMXmlFragment = 8,
PropertyParamFixedLength = 16,
PropertyParamFixedCount = 32,
PropertyHasTags = 64,
PropertyHasCustomSchema = 128,
}Public Enum PROPERTY_FLAGS As Integer
PropertyStruct = 1
PropertyParamLength = 2
PropertyParamCount = 4
PropertyWBEMXmlFragment = 8
PropertyParamFixedLength = 16
PropertyParamFixedCount = 32
PropertyHasTags = 64
PropertyHasCustomSchema = 128
End Enumimport enum
class PROPERTY_FLAGS(enum.IntEnum):
PropertyStruct = 1
PropertyParamLength = 2
PropertyParamCount = 4
PropertyWBEMXmlFragment = 8
PropertyParamFixedLength = 16
PropertyParamFixedCount = 32
PropertyHasTags = 64
PropertyHasCustomSchema = 128// PROPERTY_FLAGS
pub const PropertyStruct: i32 = 1;
pub const PropertyParamLength: i32 = 2;
pub const PropertyParamCount: i32 = 4;
pub const PropertyWBEMXmlFragment: i32 = 8;
pub const PropertyParamFixedLength: i32 = 16;
pub const PropertyParamFixedCount: i32 = 32;
pub const PropertyHasTags: i32 = 64;
pub const PropertyHasCustomSchema: i32 = 128;// PROPERTY_FLAGS
const (
PropertyStruct int32 = 1
PropertyParamLength int32 = 2
PropertyParamCount int32 = 4
PropertyWBEMXmlFragment int32 = 8
PropertyParamFixedLength int32 = 16
PropertyParamFixedCount int32 = 32
PropertyHasTags int32 = 64
PropertyHasCustomSchema int32 = 128
)const
PropertyStruct = 1;
PropertyParamLength = 2;
PropertyParamCount = 4;
PropertyWBEMXmlFragment = 8;
PropertyParamFixedLength = 16;
PropertyParamFixedCount = 32;
PropertyHasTags = 64;
PropertyHasCustomSchema = 128;// PROPERTY_FLAGS
pub const PropertyStruct: i32 = 1;
pub const PropertyParamLength: i32 = 2;
pub const PropertyParamCount: i32 = 4;
pub const PropertyWBEMXmlFragment: i32 = 8;
pub const PropertyParamFixedLength: i32 = 16;
pub const PropertyParamFixedCount: i32 = 32;
pub const PropertyHasTags: i32 = 64;
pub const PropertyHasCustomSchema: i32 = 128;const
PropertyStruct* = 1
PropertyParamLength* = 2
PropertyParamCount* = 4
PropertyWBEMXmlFragment* = 8
PropertyParamFixedLength* = 16
PropertyParamFixedCount* = 32
PropertyHasTags* = 64
PropertyHasCustomSchema* = 128enum PROPERTY_FLAGS : int {
PropertyStruct = 1,
PropertyParamLength = 2,
PropertyParamCount = 4,
PropertyWBEMXmlFragment = 8,
PropertyParamFixedLength = 16,
PropertyParamFixedCount = 32,
PropertyHasTags = 64,
PropertyHasCustomSchema = 128,
}#define global PropertyStruct 0x1
#define global PropertyParamLength 0x2
#define global PropertyParamCount 0x4
#define global PropertyWBEMXmlFragment 0x8
#define global PropertyParamFixedLength 0x10
#define global PropertyParamFixedCount 0x20
#define global PropertyHasTags 0x40
#define global PropertyHasCustomSchema 0x80