EInitializeNewDomainFlags Enumeration
Enables the host to provide the runtime with information about the initialization of an application domain.
typedef enum {
eInitializeNewDomainFlags_None = 0x0000,
eInitializeNewDomainFlags_NoSecurityChanges = 0x0002
} EInitializeNewDomainFlags;
Members
Member |
Description |
---|---|
eInitializeNewDomainFlags_None |
No flags. |
eInitializeNewDomainFlags_NoSecurityChanges |
Informs the common language runtime (CLR) that the host will not make changes to the security state of the application domain in the InitializeNewDomain method. |
Remarks
The ICLRDomainManager::SetAppDomainManagerType method takes a parameter of type EInitializeNewDomainFlags.
Requirements
Platforms: See .NET Framework System Requirements.
Header: MSCorEE.h
Library: MSCorEE.dll
.NET Framework Versions: 4
See Also
Reference
ICLRDomainManager::SetAppDomainManagerType Method