AppDomain 类

定义

表示应用程序域,它是一个应用程序在其中执行的独立环境。 此类不能被继承。

public ref class AppDomain sealed : MarshalByRefObject
public ref class AppDomain : MarshalByRefObject
public ref class AppDomain sealed : MarshalByRefObject, _AppDomain, System::Security::IEvidenceFactory
public sealed class AppDomain : MarshalByRefObject
public class AppDomain : MarshalByRefObject
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.None)]
public sealed class AppDomain : MarshalByRefObject, _AppDomain, System.Security.IEvidenceFactory
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.None)]
[System.Runtime.InteropServices.ComVisible(true)]
public sealed class AppDomain : MarshalByRefObject, _AppDomain, System.Security.IEvidenceFactory
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.None)]
[System.Runtime.InteropServices.ComVisible(true)]
public sealed class AppDomain : MarshalByRefObject
type AppDomain = class
    inherit MarshalByRefObject
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.None)>]
type AppDomain = class
    inherit MarshalByRefObject
    interface _AppDomain
    interface IEvidenceFactory
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.None)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type AppDomain = class
    inherit MarshalByRefObject
    interface _AppDomain
    interface IEvidenceFactory
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.None)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type AppDomain = class
    inherit MarshalByRefObject
Public NotInheritable Class AppDomain
Inherits MarshalByRefObject
Public Class AppDomain
Inherits MarshalByRefObject
Public NotInheritable Class AppDomain
Inherits MarshalByRefObject
Implements _AppDomain, IEvidenceFactory
继承
属性
实现

示例

此示例演示如何创建新 AppDomain类型、实例化该新 AppDomain类型并与该类型的对象通信。 此外,此示例演示如何卸载 AppDomain 导致对象被垃圾回收。

using namespace System;
using namespace System::Reflection;
using namespace System::Threading;
using namespace System::Security::Policy;

// Because this class is derived from MarshalByRefObject, a proxy 
// to a MarshalByRefType object can be returned across an AppDomain 
// boundary.
ref class MarshalByRefType : MarshalByRefObject
{
public:
    //  Call this method via a proxy.
    void SomeMethod(String^ callingDomainName)
    {
        // Get this AppDomain's settings and display some of them.
        AppDomainSetup^ ads = AppDomain::CurrentDomain->SetupInformation;
        Console::WriteLine("AppName={0}, AppBase={1}, ConfigFile={2}", 
            ads->ApplicationName, 
            ads->ApplicationBase, 
            ads->ConfigurationFile
        );

        // Display the name of the calling AppDomain and the name 
        // of the second domain.
        // NOTE: The application's thread has transitioned between 
        // AppDomains.
        Console::WriteLine("Calling from '{0}' to '{1}'.", 
            callingDomainName, 
            Thread::GetDomain()->FriendlyName
        );
    };
};

void main()
{
    // Get and display the friendly name of the default AppDomain.
    String^ callingDomainName = Thread::GetDomain()->FriendlyName;
    Console::WriteLine(callingDomainName);

    // Get and display the full name of the EXE assembly.
    String^ exeAssembly = Assembly::GetEntryAssembly()->FullName;
    Console::WriteLine(exeAssembly);

    // Construct and initialize settings for a second AppDomain.
    AppDomainSetup^ ads = gcnew AppDomainSetup();
    ads->ApplicationBase = AppDomain::CurrentDomain->BaseDirectory;

    ads->DisallowBindingRedirects = false;
    ads->DisallowCodeDownload = true;
    ads->ConfigurationFile = 
        AppDomain::CurrentDomain->SetupInformation->ConfigurationFile;

    // Create the second AppDomain.
    AppDomain^ ad2 = AppDomain::CreateDomain("AD #2", 
        AppDomain::CurrentDomain->Evidence, ads);

    // Create an instance of MarshalbyRefType in the second AppDomain. 
    // A proxy to the object is returned.
    MarshalByRefType^ mbrt = 
        (MarshalByRefType^) ad2->CreateInstanceAndUnwrap(
            exeAssembly, 
            MarshalByRefType::typeid->FullName
        );

    // Call a method on the object via the proxy, passing the 
    // default AppDomain's friendly name in as a parameter.
    mbrt->SomeMethod(callingDomainName);

    // Unload the second AppDomain. This deletes its object and 
    // invalidates the proxy object.
    AppDomain::Unload(ad2);
    try
    {
        // Call the method again. Note that this time it fails 
        // because the second AppDomain was unloaded.
        mbrt->SomeMethod(callingDomainName);
        Console::WriteLine("Sucessful call.");
    }
    catch(AppDomainUnloadedException^)
    {
        Console::WriteLine("Failed call; this is expected.");
    }
}

/* This code produces output similar to the following: 

AppDomainX.exe
AppDomainX, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
AppName=, AppBase=C:\AppDomain\bin, ConfigFile=C:\AppDomain\bin\AppDomainX.exe.config
Calling from 'AppDomainX.exe' to 'AD #2'.
Failed call; this is expected.
 */
using System;
using System.Reflection;
using System.Threading;

class Module1
{
    public static void Main()
    {
        // Get and display the friendly name of the default AppDomain.
        string callingDomainName = Thread.GetDomain().FriendlyName;
        Console.WriteLine(callingDomainName);

        // Get and display the full name of the EXE assembly.
        string exeAssembly = Assembly.GetEntryAssembly().FullName;
        Console.WriteLine(exeAssembly);

        // Construct and initialize settings for a second AppDomain.
        AppDomainSetup ads = new AppDomainSetup();
        ads.ApplicationBase = AppDomain.CurrentDomain.BaseDirectory;

        ads.DisallowBindingRedirects = false;
        ads.DisallowCodeDownload = true;
        ads.ConfigurationFile =
            AppDomain.CurrentDomain.SetupInformation.ConfigurationFile;

        // Create the second AppDomain.
        AppDomain ad2 = AppDomain.CreateDomain("AD #2", null, ads);

        // Create an instance of MarshalbyRefType in the second AppDomain.
        // A proxy to the object is returned.
        MarshalByRefType mbrt =
            (MarshalByRefType) ad2.CreateInstanceAndUnwrap(
                exeAssembly,
                typeof(MarshalByRefType).FullName
            );

        // Call a method on the object via the proxy, passing the
        // default AppDomain's friendly name in as a parameter.
        mbrt.SomeMethod(callingDomainName);

        // Unload the second AppDomain. This deletes its object and
        // invalidates the proxy object.
        AppDomain.Unload(ad2);
        try
        {
            // Call the method again. Note that this time it fails
            // because the second AppDomain was unloaded.
            mbrt.SomeMethod(callingDomainName);
            Console.WriteLine("Sucessful call.");
        }
        catch(AppDomainUnloadedException)
        {
            Console.WriteLine("Failed call; this is expected.");
        }
    }
}

// Because this class is derived from MarshalByRefObject, a proxy
// to a MarshalByRefType object can be returned across an AppDomain
// boundary.
public class MarshalByRefType : MarshalByRefObject
{
    //  Call this method via a proxy.
    public void SomeMethod(string callingDomainName)
    {
        // Get this AppDomain's settings and display some of them.
        AppDomainSetup ads = AppDomain.CurrentDomain.SetupInformation;
        Console.WriteLine("AppName={0}, AppBase={1}, ConfigFile={2}",
            ads.ApplicationName,
            ads.ApplicationBase,
            ads.ConfigurationFile
        );

        // Display the name of the calling AppDomain and the name
        // of the second domain.
        // NOTE: The application's thread has transitioned between
        // AppDomains.
        Console.WriteLine("Calling from '{0}' to '{1}'.",
            callingDomainName,
            Thread.GetDomain().FriendlyName
        );
    }
}

/* This code produces output similar to the following:

AppDomainX.exe
AppDomainX, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
AppName=, AppBase=C:\AppDomain\bin, ConfigFile=C:\AppDomain\bin\AppDomainX.exe.config
Calling from 'AppDomainX.exe' to 'AD #2'.
Failed call; this is expected.
 */
open System
open System.Reflection
open System.Threading

// Because this class is derived from MarshalByRefObject, a proxy
// to a MarshalByRefType object can be returned across an AppDomain
// boundary.
type MarshalByRefType() =
    inherit MarshalByRefObject()
    
    //  Call this method via a proxy.
    member _.SomeMethod(callingDomainName) =
        // Get this AppDomain's settings and display some of them.
        let ads = AppDomain.CurrentDomain.SetupInformation
        printfn $"AppName={ads.ApplicationName}, AppBase={ads.ApplicationBase}, ConfigFile={ads.ConfigurationFile}"

        // Display the name of the calling AppDomain and the name
        // of the second domain.
        // NOTE: The application's thread has transitioned between
        // AppDomains.
        printfn $"Calling from '{callingDomainName}' to '{Thread.GetDomain().FriendlyName}'."

// Get and display the friendly name of the default AppDomain.
let callingDomainName = Thread.GetDomain().FriendlyName
printfn $"{callingDomainName}"

// Get and display the full name of the EXE assembly.
let exeAssembly = Assembly.GetEntryAssembly().FullName
printfn $"{exeAssembly}"

// Construct and initialize settings for a second AppDomain.
let ads = AppDomainSetup()
ads.ApplicationBase <- AppDomain.CurrentDomain.BaseDirectory

ads.DisallowBindingRedirects <- false
ads.DisallowCodeDownload <- true
ads.ConfigurationFile <-
    AppDomain.CurrentDomain.SetupInformation.ConfigurationFile

// Create the second AppDomain.
let ad2 = AppDomain.CreateDomain("AD #2", null, ads)

// Create an instance of MarshalbyRefType in the second AppDomain.
// A proxy to the object is returned.
let mbrt =
    ad2.CreateInstanceAndUnwrap(
        exeAssembly,
        typeof<MarshalByRefType>.FullName) :?> MarshalByRefType

// Call a method on the object via the proxy, passing the
// default AppDomain's friendly name in as a parameter.
mbrt.SomeMethod callingDomainName

// Unload the second AppDomain. This deletes its object and
// invalidates the proxy object.
AppDomain.Unload ad2
try
    // Call the method again. Note that this time it fails
    // because the second AppDomain was unloaded.
    mbrt.SomeMethod callingDomainName
    printfn "Sucessful call."
with :? AppDomainUnloadedException ->
    printfn "Failed call this is expected."

(* This code produces output similar to the following:

AppDomainX.exe
AppDomainX, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
AppName=, AppBase=C:\AppDomain\bin, ConfigFile=C:\AppDomain\bin\AppDomainX.exe.config
Calling from 'AppDomainX.exe' to 'AD #2'.
Failed call this is expected.
 *)
Imports System.Reflection
Imports System.Threading

Module Module1
    Sub Main()

        ' Get and display the friendly name of the default AppDomain.
        Dim callingDomainName As String = Thread.GetDomain().FriendlyName
        Console.WriteLine(callingDomainName)

        ' Get and display the full name of the EXE assembly.
        Dim exeAssembly As String = [Assembly].GetEntryAssembly().FullName
        Console.WriteLine(exeAssembly)

        ' Construct and initialize settings for a second AppDomain.
        Dim ads As New AppDomainSetup()
        ads.ApplicationBase = AppDomain.CurrentDomain.BaseDirectory
        ads.DisallowBindingRedirects = False
        ads.DisallowCodeDownload = True
        ads.ConfigurationFile = _
            AppDomain.CurrentDomain.SetupInformation.ConfigurationFile

        ' Create the second AppDomain.
        Dim ad2 As AppDomain = AppDomain.CreateDomain("AD #2", Nothing, ads)

        ' Create an instance of MarshalbyRefType in the second AppDomain. 
        ' A proxy to the object is returned.
        Dim mbrt As MarshalByRefType = CType( _
            ad2.CreateInstanceAndUnwrap(exeAssembly, _
                 GetType(MarshalByRefType).FullName), MarshalByRefType)

        ' Call a method on the object via the proxy, passing the default 
        ' AppDomain's friendly name in as a parameter.
        mbrt.SomeMethod(callingDomainName)

        ' Unload the second AppDomain. This deletes its object and 
        ' invalidates the proxy object.
        AppDomain.Unload(ad2)
        Try
            ' Call the method again. Note that this time it fails because 
            ' the second AppDomain was unloaded.
            mbrt.SomeMethod(callingDomainName)
            Console.WriteLine("Sucessful call.")
        Catch e As AppDomainUnloadedException
            Console.WriteLine("Failed call; this is expected.")
        End Try

    End Sub
End Module

' Because this class is derived from MarshalByRefObject, a proxy 
' to a MarshalByRefType object can be returned across an AppDomain 
' boundary.
Public Class MarshalByRefType
    Inherits MarshalByRefObject

    '  Call this method via a proxy.
    Public Sub SomeMethod(ByVal callingDomainName As String)

        ' Get this AppDomain's settings and display some of them.
        Dim ads As AppDomainSetup = AppDomain.CurrentDomain.SetupInformation
        Console.WriteLine("AppName={0}, AppBase={1}, ConfigFile={2}", _
            ads.ApplicationName, ads.ApplicationBase, ads.ConfigurationFile)

        ' Display the name of the calling AppDomain and the name 
        ' of the second domain.
        ' NOTE: The application's thread has transitioned between 
        ' AppDomains.
        Console.WriteLine("Calling from '{0}' to '{1}'.", _
            callingDomainName, Thread.GetDomain().FriendlyName)
    End Sub
End Class

'This code produces output similar to the following:
' 
' AppDomainX.exe
' AppDomainX, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
' AppName=, AppBase=C:\AppDomain\bin, ConfigFile=C:\AppDomain\bin\AppDomainX.exe.config
' Calling from 'AppDomainX.exe' to 'AD #2'.
' Failed call; this is expected.

注解

应用程序域(由 AppDomain 对象表示)有助于提供用于执行托管代码的隔离、卸载和安全边界。

  • 使用应用程序域隔离可能会降低进程的任务。 如果执行任务的状态变得不稳定,则可以卸载该AppDomain任务AppDomain,而不会影响进程。 当进程必须长时间运行而不重新启动时,这一点很重要。 还可以使用应用程序域来隔离不应共享数据的任务。

  • 如果将程序集加载到默认应用程序域中,则进程运行时无法从内存中卸载该程序集。 但是,如果打开第二个应用程序域来加载和执行程序集,则在卸载该应用程序域时会卸载该程序集。 使用此技术可以最大程度地减少偶尔使用大型 DLL 的长时间运行进程的工作集。

备注

在 .NET Core 上,实现 AppDomain 受设计限制,不提供隔离、卸载或安全边界。 对于 .NET Core,正好有一个 AppDomain。 隔离和卸载通过 AssemblyLoadContext。 安全边界应由进程边界和适当的远程处理技术提供。

多个应用程序域可以在单个进程中运行;但是,应用程序域和线程之间没有一对一关联。 多个线程可以属于单个应用程序域,虽然给定线程不局限于单个应用程序域,但在任何给定时间,线程在单个应用程序域中执行。

应用程序域是使用 CreateDomain 该方法创建的。 AppDomain 实例用于加载和执行 () 程序集 Assembly 。 当不再使用时 AppDomain ,可以卸载它。

AppDomain 类实现一组事件,使应用程序能够在加载程序集时、卸载应用程序域时或引发未经处理的异常时做出响应。

有关使用应用程序域的详细信息,请参阅 应用程序域

此类实现和MarshalByRefObject_AppDomainIEvidenceFactory接口。

不应为 AppDomain 对象创建可远程包装器。 这样做可能会发布对该对象的 AppDomain远程引用,从而公开远程访问等 CreateInstance 方法,并有效地销毁代码 AppDomain访问安全性。 连接到远程的 AppDomain 恶意客户端可以访问自身有权访问的任何资源 AppDomain 。 不要为任何扩展 MarshalByRefObject 和实现恶意客户端可用于绕过安全系统的方法的类型创建可远程包装器。

注意

属性的 AppDomainSetup.DisallowCodeDownload 默认值为 false. 此设置对服务不安全。 若要防止服务下载部分受信任的代码,请将此属性设置为 true

属性

ActivationContext

获取当前应用程序域的激活上下文。

ApplicationIdentity

获得应用程序域中的应用程序标识。

ApplicationTrust

获取说明授予应用程序的权限以及应用程序是否拥有允许其运行的信任级别的信息。

BaseDirectory

获取基目录,它由程序集冲突解决程序用来探测程序集。

CurrentDomain

获取当前 Thread 的当前应用程序域。

DomainManager

获得初始化应用程序域时主机提供的域管理器。

DynamicDirectory

获取目录,它由程序集冲突解决程序用来探测动态创建的程序集。

Evidence

获取与该应用程序域关联的 Evidence

FriendlyName

获取此应用程序域的友好名称。

Id

获得一个整数,该整数唯一标识进程中的应用程序域。

IsFullyTrusted

获取一个值,该值指示加载到当前应用程序域的程序集是否是以完全信任方式执行的。

IsHomogenous

获取一个值,该值指示当前应用程序域是否拥有一个为加载到该应用程序域的所有程序集授予的权限集。

MonitoringIsEnabled

获取或设置一个值,该值指示是否对当前进程启用应用程序域的 CPU 和内存监视。 一旦对进程启用了监视,则无法将其禁用。

MonitoringSurvivedMemorySize

获取上次回收后保留下来的,已知由当前应用程序域引用的字节数。

MonitoringSurvivedProcessMemorySize

获取进程中所有应用程序域的上次回收后保留下来的总字节数。

MonitoringTotalAllocatedMemorySize

获取自从创建应用程序域后由应用程序域进行的所有内存分配的总大小(以字节为单位,不扣除已回收的内存)。

MonitoringTotalProcessorTime

获取自从进程启动后所有线程在当前应用程序域中执行时所使用的总处理器时间。

PermissionSet
已过时。

获取沙盒应用程序域的权限集。

RelativeSearchPath

获取基目录下的路径,在此程序集冲突解决程序应探测专用程序集。

SetupInformation

获取此实例的应用程序域配置信息。

ShadowCopyFiles

获取应用程序域是否配置为影像副本文件的指示。

方法

AppendPrivatePath(String)
已过时。
已过时。
已过时。
已过时。

将指定的目录名追加到专用路径列表。

ApplyPolicy(String)

返回应用策略后的程序集显示名称。

ClearPrivatePath()
已过时。
已过时。
已过时。
已过时。

将指定专用程序集位置的路径重置为空字符串 ("")。

ClearShadowCopyPath()
已过时。
已过时。
已过时。
已过时。

将包含影像复制的程序集的目录列表重置为空字符串 ("")。

CreateComInstanceFrom(String, String)

创建指定 COM 类型的新实例。 形参指定文件的名称,该文件包含含有类型和类型名称的程序集。

CreateComInstanceFrom(String, String, Byte[], AssemblyHashAlgorithm)

创建指定 COM 类型的新实例。 形参指定文件的名称,该文件包含含有类型和类型名称的程序集。

CreateDomain(String)
已过时。

使用指定的名称新建应用程序域。

CreateDomain(String, Evidence)

使用所提供的证据创建具有给定名称的新应用程序域。

CreateDomain(String, Evidence, AppDomainSetup)

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

CreateDomain(String, Evidence, AppDomainSetup, PermissionSet, StrongName[])

使用指定的名称、证据、应用程序域设置信息、默认权限集和一组完全受信任的程序集创建新的应用程序域。

CreateDomain(String, Evidence, String, String, Boolean)

使用证据、应用程序基路径、相对搜索路径和指定是否向应用程序域中加载程序集的影像副本的形参创建具有给定名称的新应用程序域。

CreateDomain(String, Evidence, String, String, Boolean, AppDomainInitializer, String[])

使用证据、应用程序基路径、相对搜索路径和指定是否向应用程序域中加载程序集的影像副本的形参创建具有给定名称的新应用程序域。 指定在初始化应用程序域时调用的回调方法,以及传递回调方法的字符串实参数组。

CreateInstance(String, String)

创建在指定程序集中定义的指定类型的新实例。

CreateInstance(String, String, Boolean, BindingFlags, Binder, Object[], CultureInfo, Object[])

创建在指定程序集中定义的指定类型的新实例。 形参指定联编程序、绑定标志、构造函数实参、用于解释实参的特定于区域性的信息,以及可选激活特性。

CreateInstance(String, String, Boolean, BindingFlags, Binder, Object[], CultureInfo, Object[], Evidence)
已过时。
已过时。

创建在指定程序集中定义的指定类型的新实例。 参数指定联编程序、绑定标志、构造函数自变量、特定于区域性的信息,这些信息用于解释自变量、激活特性和授权,以创建类型。

CreateInstance(String, String, Object[])

创建在指定程序集中定义的指定类型的新实例。 形参指定激活特性数组。

CreateInstanceAndUnwrap(String, String)

创建指定类型的新实例。 形参指定定义类型的程序集以及类型的名称。

CreateInstanceAndUnwrap(String, String, Boolean, BindingFlags, Binder, Object[], CultureInfo, Object[])

创建在指定的程序集中定义的指定类型的新实例,指定是否忽略类型名称的大小写,并指定绑定特性和用于选择要创建的类型的联编程序、构造函数的自变量、区域性以及激活特性。

CreateInstanceAndUnwrap(String, String, Boolean, BindingFlags, Binder, Object[], CultureInfo, Object[], Evidence)
已过时。
已过时。

创建指定类型的新实例。 形参指定类型的名称以及查找和创建该类型的方式。

CreateInstanceAndUnwrap(String, String, Object[])

创建指定类型的新实例。 形参指定定义类型的程序集、类型的名称和激活特性的数组。

CreateInstanceFrom(String, String)

创建在指定程序集文件中定义的指定类型的新实例。

CreateInstanceFrom(String, String, Boolean, BindingFlags, Binder, Object[], CultureInfo, Object[])

创建在指定程序集文件中定义的指定类型的新实例。

CreateInstanceFrom(String, String, Boolean, BindingFlags, Binder, Object[], CultureInfo, Object[], Evidence)
已过时。
已过时。

创建在指定程序集文件中定义的指定类型的新实例。

CreateInstanceFrom(String, String, Object[])

创建在指定程序集文件中定义的指定类型的新实例。

CreateInstanceFromAndUnwrap(String, String)

创建在指定程序集文件中定义的指定类型的新实例。

CreateInstanceFromAndUnwrap(String, String, Boolean, BindingFlags, Binder, Object[], CultureInfo, Object[])

创建在指定的程序集文件中定义的指定类型的新实例,指定是否忽略类型名称的大小写,并指定绑定特性和用于选择要创建的类型的联编程序、构造函数的自变量、区域性以及激活特性。

CreateInstanceFromAndUnwrap(String, String, Boolean, BindingFlags, Binder, Object[], CultureInfo, Object[], Evidence)
已过时。
已过时。

创建在指定程序集文件中定义的指定类型的新实例。

CreateInstanceFromAndUnwrap(String, String, Object[])

创建在指定程序集文件中定义的指定类型的新实例。

CreateObjRef(Type)

创建一个对象,该对象包含生成用于与远程对象进行通信的代理所需的全部相关信息。

(继承自 MarshalByRefObject)
DefineDynamicAssembly(AssemblyName, AssemblyBuilderAccess)

以指定名称和访问模式定义动态程序集。

DefineDynamicAssembly(AssemblyName, AssemblyBuilderAccess, Evidence)
已过时。
已过时。

使用指定名称、访问模式和证据定义动态程序集。

DefineDynamicAssembly(AssemblyName, AssemblyBuilderAccess, Evidence, PermissionSet, PermissionSet, PermissionSet)
已过时。
已过时。

使用指定名称、访问模式、证据和权限请求定义动态程序集。

DefineDynamicAssembly(AssemblyName, AssemblyBuilderAccess, IEnumerable<CustomAttributeBuilder>)

使用指定的名称、访问模式和自定义特性定义动态程序集。

DefineDynamicAssembly(AssemblyName, AssemblyBuilderAccess, IEnumerable<CustomAttributeBuilder>, SecurityContextSource)

定义具有指定名称、访问模式和自定义特性的动态程序集,并将指定源用于动态程序集的安全上下文。

DefineDynamicAssembly(AssemblyName, AssemblyBuilderAccess, PermissionSet, PermissionSet, PermissionSet)
已过时。
已过时。

使用指定名称、访问模式和权限请求定义动态程序集。

DefineDynamicAssembly(AssemblyName, AssemblyBuilderAccess, String)

使用指定名称、访问模式和存储目录定义动态程序集。

DefineDynamicAssembly(AssemblyName, AssemblyBuilderAccess, String, Boolean, IEnumerable<CustomAttributeBuilder>)

使用指定名称、访问模式、存储目录和同步选项定义动态程序集。

DefineDynamicAssembly(AssemblyName, AssemblyBuilderAccess, String, Evidence)
已过时。
已过时。

使用指定名称、访问模式、存储目录和证据定义动态程序集。

DefineDynamicAssembly(AssemblyName, AssemblyBuilderAccess, String, Evidence, PermissionSet, PermissionSet, PermissionSet)
已过时。
已过时。

使用指定名称、访问模式、存储目录、证据和权限请求定义动态程序集。

DefineDynamicAssembly(AssemblyName, AssemblyBuilderAccess, String, Evidence, PermissionSet, PermissionSet, PermissionSet, Boolean)
已过时。
已过时。

使用指定名称、访问模式、存储目录、证据、权限请求和同步选项定义动态程序集。

DefineDynamicAssembly(AssemblyName, AssemblyBuilderAccess, String, Evidence, PermissionSet, PermissionSet, PermissionSet, Boolean, IEnumerable<CustomAttributeBuilder>)
已过时。
已过时。

使用指定的名称、访问模式、存储目录、证据、权限请求、同步选项和自定义特性定义动态程序集。

DefineDynamicAssembly(AssemblyName, AssemblyBuilderAccess, String, PermissionSet, PermissionSet, PermissionSet)
已过时。
已过时。

使用指定名称、访问模式、存储目录和权限请求定义动态程序集。

DoCallBack(CrossAppDomainDelegate)

在另一个应用程序域中执行代码,该应用程序域由指定的委托标识。

Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
ExecuteAssembly(String)

执行指定文件中包含的程序集。

ExecuteAssembly(String, Evidence)
已过时。
已过时。

使用指定的证据执行指定文件中包含的程序集。

ExecuteAssembly(String, Evidence, String[])
已过时。
已过时。

使用指定的证据和自变量执行指定文件中包含的程序集。

ExecuteAssembly(String, Evidence, String[], Byte[], AssemblyHashAlgorithm)
已过时。
已过时。

使用指定的证据、自变量、哈希值和哈希算法执行指定文件中包含的程序集。

ExecuteAssembly(String, String[])

使用指定的自变量执行指定文件中包含的程序集。

ExecuteAssembly(String, String[], Byte[], AssemblyHashAlgorithm)
已过时。

使用指定的自变量、哈希值和哈希算法执行指定文件中包含的程序集。

ExecuteAssemblyByName(AssemblyName, Evidence, String[])
已过时。
已过时。

根据给定的 AssemblyName 使用指定的证据和实参执行程序集。

ExecuteAssemblyByName(AssemblyName, String[])

根据给定的 AssemblyName 使用指定的参数执行程序集。

ExecuteAssemblyByName(String)

在给定其显示名称的情况下执行程序集。

ExecuteAssemblyByName(String, Evidence)
已过时。
已过时。

在给定显示名称的情况下,使用指定证据执行程序集。

ExecuteAssemblyByName(String, Evidence, String[])
已过时。
已过时。

在给定其显示名称的情况下,使用指定证据和实参执行程序集。

ExecuteAssemblyByName(String, String[])

在给定显示名称的情况下,使用指定自变量执行程序集。

GetAssemblies()

获取已加载到此应用程序域的执行上下文中的程序集。

GetCurrentThreadId()
已过时。
已过时。
已过时。
已过时。
已过时。

获取当前线程标识符。

GetData(String)

为指定名称获取存储在当前应用程序域中的值。

GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetLifetimeService()
已过时。

检索控制此实例的生存期策略的当前生存期服务对象。

(继承自 MarshalByRefObject)
GetType()

获取当前实例的类型。

GetType()

获取当前实例的 Type

(继承自 Object)
InitializeLifetimeService()

通过防止创建租约来给予 AppDomain 无限生存期。

InitializeLifetimeService()
已过时。

获取生存期服务对象来控制此实例的生存期策略。

(继承自 MarshalByRefObject)
IsCompatibilitySwitchSet(String)

获取可以为 null 的布尔值,该值指示是否设置了任何兼容性开关,如果已设置,则指定是否设置了指定的兼容性开关。

IsDefaultAppDomain()

返回一个值,指示应用程序域是否是进程的默认应用程序域。

IsFinalizingForUnload()

指示此应用程序域是否正在卸载以及公共语言运行时是否正在终止该域包含的对象。

Load(AssemblyName)

在给定 AssemblyName 的情况下加载 Assembly

Load(AssemblyName, Evidence)
已过时。
已过时。

在给定 AssemblyName 的情况下加载 Assembly

Load(Byte[])

加载带有基于通用对象文件格式 (COFF) 的图像的 Assembly,该图像包含已发出的 Assembly

Load(Byte[], Byte[])

加载带有基于通用对象文件格式 (COFF) 的图像的 Assembly,该图像包含已发出的 Assembly。 还加载表示 Assembly 的符号的原始字节。

Load(Byte[], Byte[], Evidence)
已过时。
已过时。

加载带有基于通用对象文件格式 (COFF) 的图像的 Assembly,该图像包含已发出的 Assembly。 还加载表示 Assembly 的符号的原始字节。

Load(String)

在给定其显示名称的情况下加载 Assembly

Load(String, Evidence)
已过时。
已过时。

在给定其显示名称的情况下加载 Assembly

MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
MemberwiseClone(Boolean)

创建当前 MarshalByRefObject 对象的浅表副本。

(继承自 MarshalByRefObject)
ReflectionOnlyGetAssemblies()

返回已加载到应用程序域的只反射上下文中的程序集。

SetAppDomainPolicy(PolicyLevel)
已过时。
已过时。

为此应用程序域确定安全策略级别。

SetCachePath(String)
已过时。
已过时。
已过时。
已过时。

确定指定目录路径为对程序集进行影像复制的位置。

SetData(String, Object)

为指定的应用程序域属性分配指定值。

SetData(String, Object, IPermission)

将指定值分配给指定应用程序域属性,检索该属性时要求调用方具有指定权限。

SetDynamicBase(String)
已过时。
已过时。
已过时。
已过时。

建立指定的目录路径,作为存储和访问动态生成的文件的子目录的基目录。

SetPrincipalPolicy(PrincipalPolicy)

指定在此应用程序域中执行时如果线程尝试绑定到用户,用户和标识对象应如何附加到该线程。

SetShadowCopyFiles()
已过时。
已过时。
已过时。
已过时。

打开影像复制功能。

SetShadowCopyPath(String)
已过时。
已过时。
已过时。
已过时。

确定指定目录路径为要进行影像复制的程序集的位置。

SetThreadPrincipal(IPrincipal)

设置在以下情况下要附加到线程的默认主体对象,即当线程在此应用程序域中执行时,如果线程尝试绑定到主体这种情况。

ToString()

获取一个字符串表示,包含应用程序域友好名称和任意上下文策略。

Unload(AppDomain)
已过时。

卸载指定的应用程序域。

事件

AssemblyLoad

在加载程序集时发生。

AssemblyResolve

在对程序集的解析失败时发生。

DomainUnload

在即将卸载 AppDomain 时发生。

FirstChanceException

当托管代码抛出异常时发生,在运行时在调用堆栈中搜索应用程序域中的异常处理程序之前。

ProcessExit

当默认应用程序域的父进程存在时发生。

ReflectionOnlyAssemblyResolve

当程序集的解析在仅限反射的上下文中失败时发生。

ResourceResolve

当资源解析因资源不是程序集中的有效链接资源或嵌入资源而失败时发生。

TypeResolve

在对类型的解析失败时发生。

UnhandledException

当某个异常未被捕获时出现。

显式接口实现

_AppDomain.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr)

将一组名称映射为对应的一组调度标识符。

_AppDomain.GetTypeInfo(UInt32, UInt32, IntPtr)

检索对象的类型信息,然后可以使用该信息获取接口的类型信息。

_AppDomain.GetTypeInfoCount(UInt32)

检索对象提供的类型信息接口的数量(0 或 1)。

_AppDomain.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr)

提供对某一对象公开的属性和方法的访问。

适用于

另请参阅