System.Web Namespace
Represents the method that handles asynchronous events such as application events. This delegate is called by the event source when completion of the asynchronous operation is signaled by a callback to the BeginEventHandler delegate.
[ VB ]
<Serializable>
public Delegate Sub EndEventHandler ( _
ByVal ar As IAsyncResult _
)
[ C# ]
[ Serializable ]
public delegate void EndEventHandler (
IAsyncResult ar
);
[ C++ ]
[ Serializable ]
public __gc __delegate void EndEventHandler (
IAsyncResult* ar
);
In [ JScript ], you can use the delegates in the .NET Framework, but you cannot define your own.
The declaration of your event handler must have the same parameters as the EndEventHandler delegate declaration.
- ar
- The IAsyncResult that is the result of the BeginEventHandler operation.
BeginEventHandler Delegate