System.AppDomain.CreateDomain 方法 (String, Evidence, AppDomainSetup)

方法描述

使用指定的名称、证据和应用程序域设置信息创建新的应用程序域。

语法定义(C# System.AppDomain.CreateDomain 方法 (String, Evidence, AppDomainSetup) 的用法)

[SecurityPermissionAttribute(SecurityAction.Demand, ControlAppDomain = true)]
public static AppDomain CreateDomain(
	string friendlyName,
	Evidence securityInfo,
	AppDomainSetup info
)

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
friendlyName System-String 域的友好名称。此友好名称可在用户界面中显示以标识域。有关更多信息,请参见FriendlyName。
securityInfo System-Security-Policy-Evidence 确定代码标识的证据,该代码在应用程序域中运行。传递 null 以使用当前应用程序域的证据。
info System-AppDomainSetup 包含应用程序域初始化信息的对象。
返回值 System.AppDomain 新创建的应用程序域。

提示和注释

如果没有提供 info,此方法重载将使用来自默认应用程序域的 AppDomainSetup 信息。

如果没有提供 securityInfo,则使用来自当前应用程序域的证据。

重要事项

不要使用此方法重载创建沙盒应用程序域。 从 .NET Framework 4 版 开始,为 securityInfo 提供的证据不再影响应用程序域的授权集。 使用 CreateDomain(String, Evidence, AppDomainSetup, PermissionSet, StrongName[]) 方法重载创建沙盒应用程序域。

System.AppDomain.CreateDomain 方法 (String, Evidence, AppDomainSetup)例子

下面的示例演示通常如何使用 CreateDomain 重载之一创建域。

// 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);

异常

异常 异常描述
ArgumentNullException friendlyName 为 null。

命名空间

namespace: System

程序集: mscorlib(在 mscorlib.dll 中)

版本信息

.NET Framework 受以下版本支持:4、3.5、3.0、2.0、1.1、1.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1

适用平台

Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。