Bridge

EventHandler Delegate

Represents the method that will handle an event that has no event data.

Namespace:  System
Assembly:  Bridge (in Bridge.dll)

Syntax


[ExternalAttribute]
[NameAttribute]
public delegate void EventHandler(
	Object sender,
	EventArgs e
)
<ExternalAttribute> _
<NameAttribute> _
Public Delegate Sub EventHandler ( _
	sender As Object, _
	e As EventArgs _
)
[ExternalAttribute]
[NameAttribute]
public delegate void EventHandler(
	Object^ sender, 
	EventArgs^ e
)

Parameters

sender
Type: System..::..Object
The source of the event.
e
Type: System..::..EventArgs
An object that contains no event data.