Delegate ImportEngine.ProgressCallback
Assembly: TimeCockpit.Data.Import.dll
Syntax
public delegate void ProgressCallback(ImportEngine source, string worksheet, int maximum, int value, int created, int updated, bool isPartialInfo);
Parameters
| Type |
Name |
Description |
| ImportEngine |
source |
|
| System.String |
worksheet |
|
| System.Int32 |
maximum |
|
| System.Int32 |
value |
|
| System.Int32 |
created |
|
| System.Int32 |
updated |
|
| System.Boolean |
isPartialInfo |
|
Constructors
ProgressCallback(Object, IntPtr)
Declaration
public ProgressCallback(object object, IntPtr method)
Parameters
| Type |
Name |
Description |
| System.Object |
object |
|
| System.IntPtr |
method |
|
Methods
BeginInvoke(ImportEngine, String, Int32, Int32, Int32, Int32, Boolean, AsyncCallback, Object)
Declaration
public virtual IAsyncResult BeginInvoke(ImportEngine source, string worksheet, int maximum, int value, int created, int updated, bool isPartialInfo, AsyncCallback callback, object object)
Parameters
| Type |
Name |
Description |
| ImportEngine |
source |
|
| System.String |
worksheet |
|
| System.Int32 |
maximum |
|
| System.Int32 |
value |
|
| System.Int32 |
created |
|
| System.Int32 |
updated |
|
| System.Boolean |
isPartialInfo |
|
| System.AsyncCallback |
callback |
|
| System.Object |
object |
|
Returns
| Type |
Description |
| System.IAsyncResult |
|
EndInvoke(IAsyncResult)
Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
| Type |
Name |
Description |
| System.IAsyncResult |
result |
|
Invoke(ImportEngine, String, Int32, Int32, Int32, Int32, Boolean)
Declaration
public virtual void Invoke(ImportEngine source, string worksheet, int maximum, int value, int created, int updated, bool isPartialInfo)
Parameters
| Type |
Name |
Description |
| ImportEngine |
source |
|
| System.String |
worksheet |
|
| System.Int32 |
maximum |
|
| System.Int32 |
value |
|
| System.Int32 |
created |
|
| System.Int32 |
updated |
|
| System.Boolean |
isPartialInfo |
|