Not
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Implements a callback method that allows the host to notify the common language runtime (CLR) of the status of specified I/O requests.
interface ICLRIoCompletionManager : IUnknown {
HRESULT OnComplete(
[in] DWORD dwErrorCode,
[in] DWORD NumberOfBytesTransferred,
[in] void* pvOverlapped
);
}
Methods
Method |
Description |
|---|---|
Notifies the CLR of the status of an I/O request that was made by using a call to the IHostIoCompletionManager::Bind method. |
Remarks
The host implements the I/O completion abstraction by using the IHostIoCompletionManager interface. The CLR makes I/O requests through this interface, and the host notifies the runtime of the outcome of such requests by using the ICLRIoCompletionManager interface.
Requirements
Platforms: See .NET Framework System Requirements.
Header: MSCorEE.idl
Library: Included as a resource in MSCorEE.dll
.NET Framework Versions: 3.5 SP1, 3.5, 3.0 SP1, 3.0, 2.0 SP1, 2.0
See Also
Reference
IHostIoCompletionManager Interface
IHostThreadPoolManager Interface