Delegate ProgressReporter
Delegate defining the signature for progress reporting events.
Namespace: Sdl.FileTypeSupport.Framework.NativeApi
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)
Delegate defining the signature for progress reporting events.
Declaration
public ProgressReporter(object object, IntPtr method)
Parameters
Type | Name | Description |
---|---|---|
Object | object | |
IntPtr | method |
Methods
BeginInvoke(Byte, AsyncCallback, Object)
Delegate defining the signature for progress reporting events.
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)
Delegate defining the signature for progress reporting events.
Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
Type | Name | Description |
---|---|---|
IAsyncResult | result |
Invoke(Byte)
Delegate defining the signature for progress reporting events.
Declaration
public virtual void Invoke(byte percent)
Parameters
Type | Name | Description |
---|---|---|
Byte | percent |