COR_PRF_STATIC_TYPE Enumeration
Indicates whether a field is static and, if so, the static quality that applies to the field. These values can be combined using the bitwise OR operation to indicate that the field has multiple, different static qualities.
typedef enum {
COR_PRF_FIELD_NOT_A_STATIC = 0x0,
COR_PRF_FIELD_APP_DOMAIN_STATIC = 0x1,
COR_PRF_FIELD_THREAD_STATIC = 0x2,
COR_PRF_FIELD_CONTEXT_STATIC = 0x4,
COR_PRF_FIELD_RVA_STATIC = 0x8
} COR_PRF_STATIC_TYPE;
Members
Member | Description |
---|---|
COR_PRF_FIELD_NOT_A_STATIC |
The field is not static. |
COR_PRF_FIELD_APP_DOMAIN_STATIC |
The field is application domain-static. |
COR_PRF_FIELD_THREAD_STATIC |
The field is thread-static. |
COR_PRF_FIELD_CONTEXT_STATIC |
The field is context-static. |
COR_PRF_FIELD_RVA_STATIC |
The field is relative virtual address (RVA)-static. |
Requirements
Platforms: Windows 2000, Windows XP, Windows Server 2003 family
Header: CorProf.idl
Library: CorGuids.lib
.NET Framework Version: 2.0