asp.net.ph

EndEventHandler Delegate

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.

Parameters [ Visual Basic, C#, C++ ]

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.
See Also

BeginEventHandler Delegate Skip Navigation Links




Home
Suggested Reading


Previous page Back to top Next page

© 2000-2010 Rey Nuñez All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note

You can help support asp.net.ph