Delegate ISqlExecuterProgressEvent
Callback reporting the progress of a long-running SQL operation as the number of
records processed so far out of the total.
Assembly: Reportman.Drawing.dll
Syntax
public delegate void ISqlExecuterProgressEvent(int current, int total)
Parameters
| Type |
Name |
Description |
| int |
current |
Callback reporting the progress of a long-running SQL operation as the number of records processed so far out of the total. |
| int |
total |
Callback reporting the progress of a long-running SQL operation as the number of records processed so far out of the total. |
Constructors
View Source
ISqlExecuterProgressEvent(object, nint)
Declaration
public ISqlExecuterProgressEvent(object @object, nint method)
Parameters
Methods
View Source
BeginInvoke(int, int, AsyncCallback, object)
Declaration
public virtual IAsyncResult BeginInvoke(int current, int total, AsyncCallback callback, object @object)
Parameters
Returns
View Source
EndInvoke(IAsyncResult)
Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
View Source
Invoke(int, int)
Declaration
public virtual void Invoke(int current, int total)
Parameters
| Type |
Name |
Description |
| int |
current |
|
| int |
total |
|