CorSetENC Enumeration

Contains values used to influence behavior during the generation of metadata.

typedef enum CorSetENC {
    
    MDSetENCOn                  = 0x00000001,
    MDSetENCOff                 = 0x00000002,
    
    MDUpdateENC                 = 0x00000001,
    MDUpdateFull                = 0x00000002,
    MDUpdateExtension           = 0x00000003,
    MDUpdateIncremental         = 0x00000004,
    MDUpdateDelta               = 0x00000005,
    MDUpdateMask                = 0x00000007
    
} CorSetENC;

Members

Member

Description

MDSetENCOn

Obsolete.

MDSetENCOff

Obsolete.

MDUpdateENC

Indicates that whereas metadata can be updated, tokens cannot be moved.

MDUpdateFull

Indicates that tokens can be moved during updates.

MDUpdateExtension

Indicates that updates can consist only of additions. Tokens cannot be moved.

MDUpdateIncremental

Indicates that compilation is incremental.

MDUpdateDelta

Indicates that only changed metadata should be saved.

MDUpdateMask

Includes MDUpdateENC, MDUpdateFull and MDUpdateIncremental.

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

See Also

Other Resources

Metadata Enumerations