ApplicationManager.GetAppDomain 方法

定义

获取指定应用程序的应用程序域。

重载

GetAppDomain(String)

获取指定应用程序的应用程序域。

GetAppDomain(IApplicationHost)

获取使用指定主机的应用程序的应用程序域。

GetAppDomain(String)

获取指定应用程序的应用程序域。

public:
 AppDomain ^ GetAppDomain(System::String ^ appId);
public AppDomain GetAppDomain (string appId);
member this.GetAppDomain : string -> AppDomain
Public Function GetAppDomain (appId As String) As AppDomain

参数

appId
String

应用程序的唯一标识符。

返回

AppDomain

应用程序的应用程序域。

适用于

GetAppDomain(IApplicationHost)

获取使用指定主机的应用程序的应用程序域。

public:
 AppDomain ^ GetAppDomain(System::Web::Hosting::IApplicationHost ^ appHost);
public AppDomain GetAppDomain (System.Web.Hosting.IApplicationHost appHost);
member this.GetAppDomain : System.Web.Hosting.IApplicationHost -> AppDomain
Public Function GetAppDomain (appHost As IApplicationHost) As AppDomain

参数

appHost
IApplicationHost

要为其获取应用程序域的宿主。

返回

AppDomain

应用程序的应用程序域。

适用于