Skip to content

Latest commit

 

History

History
54 lines (40 loc) · 1.73 KB

einitializenewdomainflags-enumeration.md

File metadata and controls

54 lines (40 loc) · 1.73 KB
description title ms.date api_name api_location api_type f1_keywords helpviewer_keywords ms.assetid
Learn more about: EInitializeNewDomainFlags Enumeration
EInitializeNewDomainFlags Enumeration
03/30/2017
EInitializeNewDomainFlags
mscoree.dll
COM
EInitializeNewDomainFlags
EInitializeNewDomainFlags enumeration [.NET Framework hosting]
3a120ab2-f5ef-4c9b-8595-d3ed7247c342

EInitializeNewDomainFlags Enumeration

Enables the host to provide the runtime with information about the initialization of an application domain.

Syntax

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 xref:System.AppDomainManager.InitializeNewDomain%2A method.

Remarks

The ICLRDomainManager::SetAppDomainManagerType method takes a parameter of type EInitializeNewDomainFlags.

Requirements

Platforms: See System Requirements.

Header: MSCorEE.h

Library: MSCorEE.dll

.NET Framework Versions: [!INCLUDEnet_current_v40plus]

See also