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
Methods
BeginInvoke(byte, AsyncCallback, object)
Declaration
public virtual IAsyncResult BeginInvoke(byte percent, AsyncCallback callback, object @object)
Parameters
Returns
EndInvoke(IAsyncResult)
Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
Invoke(byte)
Declaration
public virtual void Invoke(byte percent)
Parameters
Type |
Name |
Description |
byte |
percent |
|