Skip to content

Latest commit

 

History

History
57 lines (44 loc) · 1.56 KB

corpropertyattr-enumeration.md

File metadata and controls

57 lines (44 loc) · 1.56 KB
description title ms.date api_name api_location api_type f1_keywords helpviewer_keywords ms.assetid topic_type
Learn more about: CorPropertyAttr Enumeration
CorPropertyAttr Enumeration
03/30/2017
CorPropertyAttr
mscoree.dll
COM
CorPropertyAttr
CorPropertyAttr enumeration [.NET Framework metadata]
58ac8202-854d-4efd-acfb-d2da8b446e12
apiref

CorPropertyAttr Enumeration

Contains values that describe the metadata of a property.

Syntax

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

Members

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.

Requirements

Platforms: See System Requirements.

Header: CorHdr.h

.NET Framework Versions: [!INCLUDEnet_current_v10plus]

See also