ThreadPool::UnsafeQueueNativeOverlapped Method
Queues an overlapped I/O operation for execution.
Assembly: mscorlib (in mscorlib.dll)
[CLSCompliantAttribute(false)] public: static bool UnsafeQueueNativeOverlapped( NativeOverlapped* overlapped )
Parameters
- overlapped
- Type: System.Threading::NativeOverlapped*
The NativeOverlapped structure to queue.
Return Value
Type: System::Booleantrue if the operation was successfully queued to an I/O completion port; otherwise, false.
For information about using native Win32 overlapped I/O, see the Overlapped class, the NativeOverlapped structure, and the OVERLAPPED structure in the Win32 Platform SDK.
Caution |
|---|
Using the UnsafeQueueNativeOverlapped method could inadvertently open up a security hole. Code access security bases its permission checks on the permissions of all the callers on the stack. When work is queued on a thread pool thread using UnsafeQueueNativeOverlapped, the stack of the thread pool thread does not have the context of the actual callers. Malicious code might be able exploit this to avoid permission checks. |
- 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.
Caution