Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Contains flag values that indicate the conditions under which an error message should be generated when metadata is emitted out of order.
typedef enum CorErrorIfEmitOutOfOrder {
MDErrorOutOfOrderDefault = 0x00000000,
MDErrorOutOfOrderNone = 0x00000000,
MDErrorOutOfOrderAll = 0xffffffff,
MDMethodOutOfOrder = 0x00000001,
MDFieldOutOfOrder = 0x00000002,
MDParamOutOfOrder = 0x00000004,
MDPropertyOutOfOrder = 0x00000008,
MDEventOutOfOrder = 0x00000010
} CorErrorIfEmitOutOfOrder;
Members
Member |
Description |
---|---|
MDErrorOutOfOrderDefault |
Indicates the default behavior, which does not generate error messages. |
MDErrorOutOfOrderNone |
Indicates that the compiler should not generate error messages. |
MDErrorOutOfOrderAll |
Indicates that the compiler should generate an error message when a field, property, event, method, or parameter is emitted out of order. |
MDMethodOutOfOrder |
Indicates that the compiler should generate an error message when a method is emitted out of order. |
MDFieldOutOfOrder |
Indicates that the compiler should generate an error message when a field is emitted out of order. |
MDParamOutOfOrder |
Indicates that the compiler should generate an error message when a parameter is emitted out of order. |
MDPropertyOutOfOrder |
Indicates that the compiler should generate an error message when a property is emitted out of order. |
MDEventOutOfOrder |
Indicates that the compiler should generate an error message when an event is emitted out of order. |
Requirements
Platforms: See .NET Framework System Requirements.
Header: CorHdr.h
.NET Framework Versions: 4, 3.5 SP1, 3.5, 3.0 SP1, 3.0, 2.0 SP1, 2.0, 1.1, 1.0