Skip to content

Latest commit

 

History

History
67 lines (51 loc) · 2.3 KB

ihosttaskmanager-setclrtaskmanager-method.md

File metadata and controls

67 lines (51 loc) · 2.3 KB
description title ms.date api_name api_location api_type f1_keywords helpviewer_keywords ms.assetid topic_type
Learn more about: IHostTaskManager::SetCLRTaskManager Method
IHostTaskManager::SetCLRTaskManager Method
03/30/2017
IHostTaskManager.SetCLRTaskManager
mscoree.dll
COM
IHostTaskManager::SetCLRTaskManager
IHostTaskManager::SetCLRTaskManager method [.NET Framework hosting]
SetCLRTaskManager method [.NET Framework hosting]
ec90ee83-bd4b-408b-9274-62a923ab86a1
apiref

IHostTaskManager::SetCLRTaskManager Method

Provides the host with an interface pointer to an ICLRTaskManager instance implemented by the common language runtime (CLR).

Syntax

HRESULT SetCLRTaskManager (  
    [in] ICLRTaskManager *pManager  
);  

Parameters

pManager
[in] A pointer to an ICLRTaskManager instance implemented by the common language runtime.

Return Value

HRESULT Description
S_OK SetCLRTaskManager returned successfully.
HOST_E_CLRNOTAVAILABLE The 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 runtime calls SetCLRTaskManager to provide the host with an interface pointer to an ICLRTaskManager instance.

Requirements

Platforms: See System Requirements.

Header: MSCorEE.h

Library: Included as a resource in MSCorEE.dll

.NET Framework Versions: [!INCLUDEnet_current_v20plus]

See also