This topic has not yet been rated - Rate this topic

CorPropertyAttr Enumeration

Contains values that describe the metadata of a property.


typedef enum CorPropertyAttr {
        
    prSpecialName           =   0x0200, 
    prReservedMask          =   0xf400,
    prRTSpecialName         =   0x0400,
    prHasDefault            =   0x1000,
    prUnused                =   0xe9ff

} CorPropertyAttr;
Member Description

prSpecialName

Specifies that the property is special, and that its name describes how.

prReservedMask

Reserved for internal use by the common language runtime.

prRTSpecialName

Specifies that the common language runtime metadata internal APIs should check the encoding of the property name.

prHasDefault

Specifies that the property has a default value.

prUnused

Unused.

Platforms: Windows 2000, Windows XP, Windows Server 2003 family

Header: CorHdr.h

.NET Framework Version: 2.0, 1.1, 1.0

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.