Delegate CreateDataSourceCompletedEventHandler
Represents the method that will handle the completion of a data source creation operation.
Assembly: BoldReports.Web.dll
Syntax
public delegate void CreateDataSourceCompletedEventHandler(object sender, CreateDataSourceCompletedEventArgs e);
Parameters
| Type |
Name |
Description |
| System.Object |
sender |
The source of the event, typically the component that triggered the event.
|
| CreateDataSourceCompletedEventArgs |
e |
An AsyncCompletedEventArgs object that contains event data related to the completion of the creation operation.
|
Constructors
CreateDataSourceCompletedEventHandler(Object, IntPtr)
Declaration
public CreateDataSourceCompletedEventHandler(object object, IntPtr method)
Parameters
| Type |
Name |
Description |
| System.Object |
object |
|
| System.IntPtr |
method |
|
Methods
BeginInvoke(Object, CreateDataSourceCompletedEventArgs, AsyncCallback, Object)
Declaration
public virtual IAsyncResult BeginInvoke(object sender, CreateDataSourceCompletedEventArgs e, AsyncCallback callback, object object)
Parameters
Returns
| Type |
Description |
| System.IAsyncResult |
|
EndInvoke(IAsyncResult)
Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
| Type |
Name |
Description |
| System.IAsyncResult |
result |
|
Invoke(Object, CreateDataSourceCompletedEventArgs)
Declaration
public virtual void Invoke(object sender, CreateDataSourceCompletedEventArgs e)
Parameters