ApplicationManager.GetAppDomain Method

Definition

Gets the application ___domain of a specified application.

Overloads

GetAppDomain(String)

Gets the application ___domain of the specified application.

GetAppDomain(IApplicationHost)

Gets the application ___domain of an application using the specified host.

GetAppDomain(String)

Gets the application ___domain of the specified application.

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

Parameters

appId
String

The unique identifier for the application.

Returns

The application ___domain of the application.

Applies to

GetAppDomain(IApplicationHost)

Gets the application ___domain of an application using the specified host.

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

Parameters

appHost
IApplicationHost

The host to get the application ___domain for.

Returns

The application ___domain of the application.

Applies to