This documentation is archived and is not being maintained.
IOCompletionCallback Delegate
Visual Studio 2010
Receives the error code, number of bytes, and overlapped value type when an I/O operation completes on the thread pool.
Assembly: mscorlib (in mscorlib.dll)
[ComVisibleAttribute(true)] [CLSCompliantAttribute(false)] public delegate void IOCompletionCallback( unsigned int errorCode, unsigned int numBytes, NativeOverlapped* pOVERLAP )
Parameters
- errorCode
- Type: System::UInt32
The error code.
- numBytes
- Type: System::UInt32
The number of bytes that are transferred.
- pOVERLAP
- Type: System.Threading::NativeOverlapped*
A NativeOverlapped representing an unmanaged pointer to the native overlapped value type.
- SecurityCriticalAttribute
Requires full trust for the immediate caller. This member cannot be used by partially trusted or transparent code.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: