AppDomain.CreateDomain Method (String)
.NET Framework (current version)
Creates a new application domain with the specified name.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- friendlyName
-
Type:
System.String
The friendly name of the domain.
| Exception | Condition |
|---|---|
| ArgumentNullException | friendlyName is null. |
The friendlyName parameter is intended to identify the domain in a manner that is meaningful to humans. This string should be suitable for display in user interfaces.
This method overload uses the AppDomainSetup information from the default application domain.
The following sample demonstrates, in general, how to create a domain using one of the CreateDomain overloads.
// Set up the AppDomainSetup AppDomainSetup setup = new AppDomainSetup(); setup.ApplicationBase = "(some directory)"; setup.ConfigurationFile = "(some file)"; // Set up the Evidence Evidence baseEvidence = AppDomain.CurrentDomain.Evidence; Evidence evidence = new Evidence(baseEvidence); evidence.AddAssembly("(some assembly)"); evidence.AddHost("(some host)"); // Create the AppDomain AppDomain newDomain = AppDomain.CreateDomain("newDomain", evidence, setup);
SecurityPermissionSecurityPermission
for the ability to create and manipulate an application domain. Associated enumeration: SecurityPermissionFlag.ControlAppDomain. Security action: Demand.
to provide evidence. Associated enumeration: SecurityPermissionFlag.ControlEvidence.
.NET Framework
Available since 1.1
Available since 1.1
Show: