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.
Describes the possible flags returned in the pdwConfigFlags parameter of the ICLRMetaHostPolicy::GetRequestedRuntime method, indicating the presence and setting of the useLegacyV2RuntimeActivationPolicy attribute in the <startup> element of the configuration file.
Syntax
typedef enum {  
    METAHOST_CONFIG_FLAGS_LEGACY_V2_ACTIVATION_POLICY_UNSET  = 0x00,  
    METAHOST_CONFIG_FLAGS_LEGACY_V2_ACTIVATION_POLICY_TRUE   = 0x01,  
    METAHOST_CONFIG_FLAGS_LEGACY_V2_ACTIVATION_POLICY_FALSE  = 0x02,  
    METAHOST_CONFIG_FLAGS_LEGACY_V2_ACTIVATION_POLICY_MASK   = 0x03  
} METAHOST_CONFIG_FLAGS;  
Members
| Member | Description | 
|---|---|
| METAHOST_CONFIG_FLAGS_LEGACY_V2_ACTIVATION_POLICY_UNSET | The useLegacyV2RuntimeActivationPolicyattribute was not present in the <startup> Element. | 
| METAHOST_CONFIG_FLAGS_LEGACY_V2_ACTIVATION_POLICY_TRUE | The useLegacyV2RuntimeActivationPolicyattribute was present and set totrue. | 
| METAHOST_CONFIG_FLAGS_LEGACY_V2_ACTIVATION_POLICY_FALSE | The useLegacyV2RuntimeActivationPolicyattribute was present and set tofalse. | 
| METAHOST_CONFIG_FLAGS_LEGACY_V2_ACTIVATION_POLICY_MASK | Apply this mask to the value returned in pdwConfigFlagsto get the values relevant touseLegacyV2RuntimeActivationPolicy. | 
Remarks
Requirements
Platforms: See System Requirements.
Header: Metahost.h
Library: Included as a resource in MSCorEE.dll
.NET Framework Versions: Available since 4