Overlapped::EventHandle Property

 
obsoleteCodeEntityP:System.Threading.Overlapped.EventHandleIntPtr Note: This API is now obsolete.

Gets or sets the 32-bit integer handle to a synchronization event that is signaled when the I/O operation is complete.

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

public:
[ObsoleteAttribute("This property is not 64-bit compatible.  Use EventHandleIntPtr instead.  http://go.microsoft.com/fwlink/?linkid=14202")]
property int EventHandle {
	int get();
	void set(int value);
}

Property Value

Type: System::Int32

An Int32 value representing the handle of the synchronization event.

This property cannot be used on 64-bit platforms. Use the EventHandleIntPtr property instead.

Use the WaitHandle::Handle property to get the handle of any managed synchronization event that derives from the WaitHandle class.

.NET Framework
Available since 1.1
Return to top
Show: