Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ThreadPool::BindHandle Method (IntPtr)

 
Note: This API is now obsolete.

Binds an operating system handle to the ThreadPool.

Namespace:   System.Threading
Assembly:  mscorlib (in mscorlib.dll)

public:
[ObsoleteAttribute("ThreadPool.BindHandle(IntPtr) has been deprecated.  Please use ThreadPool.BindHandle(SafeHandle) instead.", 
	false)]
[SecurityPermissionAttribute(SecurityAction::Demand, Flags = SecurityPermissionFlag::UnmanagedCode)]
static bool BindHandle(
	IntPtr osHandle
)

Parameters

osHandle
Type: System::IntPtr

An IntPtr that holds the handle. The handle must have been opened for overlapped I/O on the unmanaged side.

Return Value

Type: System::Boolean

true if the handle is bound; otherwise, false.

Exception Condition
SecurityException

The caller does not have the required permission.

SecurityPermission

for the ability to call unmanaged code. Associated enumeration: SecurityPermissionFlag::UnmanagedCode.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft