Delegate ProgressReporter
Delegate defining the signature for progress reporting events.
Assembly: Sdl.FileTypeSupport.Framework.Core.dll
Syntax
public delegate void ProgressReporter(byte percent);
Parameters
Type |
Name |
Description |
Byte |
percent |
Percent completed - must be a value from 0 to 100.
|
Constructors
ProgressReporter(Object, IntPtr)
Declaration
public ProgressReporter(object object, IntPtr method)
Parameters
Type |
Name |
Description |
Object |
object |
|
IntPtr |
method |
|
Methods
BeginInvoke(Byte, AsyncCallback, Object)
Declaration
public virtual IAsyncResult BeginInvoke(byte percent, AsyncCallback callback, object object)
Parameters
Type |
Name |
Description |
Byte |
percent |
|
AsyncCallback |
callback |
|
Object |
object |
|
Returns
Type |
Description |
IAsyncResult |
|
EndInvoke(IAsyncResult)
Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
Type |
Name |
Description |
IAsyncResult |
result |
|
Invoke(Byte)
Declaration
public virtual void Invoke(byte percent)
Parameters
Type |
Name |
Description |
Byte |
percent |
|