| |||||
BeginEventHandler DelegateRepresents the method that handles asynchronous events such as application events. This delegate is called at the start of an asynchronous operation. [ VB ] <Serializable> public Delegate Function Sub BeginEventHandler ( _ ByVal sender As Object, _ ByVal e As EventArgs, _ ByVal cb As AsyncCallback, _ ByVal extraData As Object _ ) As IAsyncResult [ C# ] [ Serializable ] public delegate IAsyncResult BeginEventHandler ( object sender, EventArgs e, AsyncCallback cb, object extraData ); [ C++ ] [ Serializable ] public __gc __delegate IAsyncResult* BeginEventHandler ( Object* sender, EventArgs* e, AsyncCallback* cb, Object* extraData ); In [ JScript ], you can use the delegates in the .NET Framework, but you cannot define your own. ParametersThe declaration of your event handler must have the same parameters as the BeginEventHandler delegate declaration.
Return ValueThe IAsyncResult that represents the result of the BeginEventHandler operation. See Also |
| ||||
Check out related books at Amazon
© 2000-2008 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 aspxtreme