Overlapped::EventHandleIntPtr Property

 

Gets or sets the handle to the synchronization event that is signaled when the I/O operation is complete.

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

public:
[ComVisibleAttribute(false)]
property IntPtr EventHandleIntPtr {
	IntPtr get();
	void set(IntPtr value);
}

Property Value

Type: System::IntPtr

An IntPtr representing the handle of the event.

To get the handle of a managed synchronization object that derives from the WaitHandle class, use the WaitHandle::SafeWaitHandle property to get a SafeWaitHandle object, and then call the DangerousGetHandle method.

.NET Framework
Available since 2.0
Return to top
Show: