AppDomain::CreateDomain Method (String, Evidence, AppDomainSetup)
Creates a new application domain using the specified name, evidence, and application domain setup information.
Assembly: mscorlib (in mscorlib.dll)
[SecurityPermissionAttribute(SecurityAction::Demand, ControlAppDomain = true)] public: static AppDomain^ CreateDomain( String^ friendlyName, Evidence^ securityInfo, AppDomainSetup^ info )
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 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.
| Exception | Condition |
|---|---|
| ArgumentNullException | friendlyName is nullptr. |
If info is not supplied, this method overload uses the AppDomainSetup information from the default application domain.
If securityInfo is not supplied, the evidence from the current application domain is used.
Important |
|---|
Do not use this method overload to create sandboxed application domains. Beginning with the .NET Framework version 4, the evidence that is supplied for securityInfo no longer affects the grant set of the application domain. Use the CreateDomain(String, Evidence, AppDomainSetup, PermissionSet, array<StrongName>) method overload to create sandboxed application domains. |
The following sample demonstrates, in general, how to create a domain using one of the CreateDomain overloads.
// Set up the AppDomainSetup AppDomainSetup^ setup = gcnew AppDomainSetup; setup->ApplicationBase = "(some directory)"; setup->ConfigurationFile = "(some file)"; // Set up the Evidence Evidence^ baseEvidence = AppDomain::CurrentDomain->Evidence; Evidence^ evidence = gcnew Evidence( baseEvidence ); evidence->AddAssembly( "(some assembly)" ); evidence->AddHost( "(some host)" ); // Create the AppDomain AppDomain^ newDomain = AppDomain::CreateDomain( "newDomain", evidence, setup );
- SecurityPermission
for the ability to create and manipulate an AppDomain. Associated enumeration: SecurityPermissionFlag::ControlAppDomain. Security action: Demand.
- SecurityPermission
to provide evidence. Associated enumeration: SecurityPermissionFlag::ControlEvidence.
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.
Important