IHostControl::SetAppDomainManager Method
Notifies the host that an application domain has been created.
HRESULT SetAppDomainManager (
[in] DWORD dwAppDomainID,
[in] IUnknown* pUnkAppDomainManager
);
Parameters
dwAppDomainID
[in] The numeric identifier of the selected AppDomain.pUnkAppDomainManager
[in] A pointer to the AppDomainManager object that the host implements as IUnknown.
Return Value
HRESULT |
Description |
---|---|
S_OK |
SetAppDomainManager returned successfully. |
HOST_E_CLRNOTAVAILABLE |
The common language runtime (CLR) has not been loaded into a process, or the CLR is in a state in which it cannot run managed code or process the call successfully. |
HOST_E_TIMEOUT |
The call timed out. |
HOST_E_NOT_OWNER |
The caller does not own the lock. |
HOST_E_ABANDONED |
An event was canceled while a blocked thread or fiber was waiting on it. |
E_FAIL |
An unknown catastrophic failure occurred. When a method returns E_FAIL, the CLR is no longer usable within the process. Subsequent calls to hosting methods return HOST_E_CLRNOTAVAILABLE. |
Remarks
The AppDomainManager provides the host with a mechanism to bootstrap into managed code and to control the creation and settings of each AppDomain. The AppDomainManager is loaded into each AppDomain when that AppDomain is created. If it chooses, the CLR notifies the host that the application domain has been created by setting the value of the pUnkAppDomainManager parameter.
In its implementation of the SetAppDomainManager method, the host can set the assembly name and type for the application domain manager.
Requirements
Platforms: Windows 2000, Windows XP, Windows Server 2003 family
Header: MSCorEE.idl
Library: Included as a resource in MSCorEE.dll
.NET Framework Version: 2.0