System.AppDomain.CreateDomain Method

Creates a new application domain using the specified name, evidence, application domain setup information, default permission set, and array of fully trusted assemblies.

Syntax

public static AppDomain CreateDomain (string friendlyName, System.Security.Policy.Evidence securityInfo, AppDomainSetup info, System.Security.PermissionSet grantSet, params System.Security.Policy.StrongName[] fullTrustAssemblies)

Parameters

friendlyName
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 AppDomain.FriendlyName.
securityInfo
Evidence that establishes the identity of the code that runs in the application domain. Pass null to use the evidence of the current application domain.
info
An object that contains application domain initialization information.
grantSet
A default permission set that is granted to all assemblies loaded into the new application domain that do not have specific grants.
fullTrustAssemblies
An array of strong names representing assemblies to be considered fully trusted in the new application domain.

Returns

The newly created application domain.

Remarks

You must set the AppDomainSetup.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 System.Security.Policy.ApplicationTrust object for the new application domain.

Requirements

Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 2.0.0.0, 4.0.0.0