AppDomain::CreateDomain Method (String, Evidence, AppDomainSetup, PermissionSet, array<StrongName>)
Creates a new application domain using the specified name, evidence, application domain setup information, default permission set, and array of fully trusted assemblies.
Assembly: mscorlib (in mscorlib.dll)
public: static AppDomain^ CreateDomain( String^ friendlyName, Evidence^ securityInfo, AppDomainSetup^ info, PermissionSet^ grantSet, ... array<StrongName^>^ fullTrustAssemblies )
Parameters
- friendlyName
- Type: System::String
The friendly name of the domain. This friendly name can be displayed in user interfaces to identify the domain. For more information, see the description of FriendlyName.
- securityInfo
- Type: System.Security.Policy::Evidence
Evidence that establishes the identity of the code that runs in the application domain. Pass nullptr to use the evidence of the current application domain.
- info
- Type: System::AppDomainSetup
An object that contains application domain initialization information.
- grantSet
- Type: System.Security::PermissionSet
A default permission set that is granted to all assemblies loaded into the new application domain that do not have specific grants.
- fullTrustAssemblies
- Type: array<System.Security.Policy::StrongName>
An array of strong names representing assemblies to be considered fully trusted in the new application domain.
| Exception | Condition |
|---|---|
| ArgumentNullException | friendlyName is nullptr. |
| InvalidOperationException | The application domain is nullptr. -or- The ApplicationBase property is not set on the AppDomainSetup object that is supplied for info. |
You must set the ApplicationBase property of the AppDomainSetup object that you supply for info. Otherwise, an exception is thrown.
If securityInfo is not supplied, the evidence from the current application domain is used.
The information provided for grantSet and fullTrustAssemblies is used to create an ApplicationTrust object for the new application domain.
- SecurityPermission
to provide evidence. Associated enumeration: SecurityPermissionFlag::ControlEvidence.
- SecurityPermission
for the ability to create and manipulate an application domain. Associated enumeration: SecurityPermissionFlag::ControlAppDomain. Security action: Demand.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.