This documentation is archived and is not being maintained.
ThreadPool::BindHandle Method (SafeHandle)
Visual Studio 2010
Binds an operating system handle to the ThreadPool.
Assembly: mscorlib (in mscorlib.dll)
[SecurityPermissionAttribute(SecurityAction::Demand, Flags = SecurityPermissionFlag::UnmanagedCode)] public: static bool BindHandle( SafeHandle^ osHandle )
Parameters
- osHandle
- Type: System.Runtime.InteropServices::SafeHandle
A SafeHandle that holds the operating system handle. The handle must have been opened for overlapped I/O on the unmanaged side.
| Exception | Condition |
|---|---|
| ArgumentNullException | osHandle is nullptr. |
The osHandle parameter should be a SafeFileHandle, which derives from the abstract SafeHandle class.
- SecurityPermission
for the ability to call unmanaged code. Associated enumeration: SecurityPermissionFlag::UnmanagedCode.
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: