Class QueuedWorkerCompletedEventArgs
Represents the event arguments of the RunWorkerCompleted event.
Inheritance
System.Object
System.EventArgs
System.ComponentModel.AsyncCompletedEventArgs
QueuedWorkerCompletedEventArgs
Inherited Members
System.ComponentModel.AsyncCompletedEventArgs.RaiseExceptionIfNecessary()
System.ComponentModel.AsyncCompletedEventArgs.Cancelled
System.ComponentModel.AsyncCompletedEventArgs.Error
System.ComponentModel.AsyncCompletedEventArgs.UserState
System.EventArgs.Empty
Namespace: Manina.Windows.Forms
Assembly: ImageListView.dll
Syntax
public class QueuedWorkerCompletedEventArgs : AsyncCompletedEventArgs
Constructors
| Improve this Doc View SourceQueuedWorkerCompletedEventArgs(Object, Object, Int32, Exception, Boolean)
Initializes a new instance of the QueuedWorkerCompletedEventArgs class.
Declaration
public QueuedWorkerCompletedEventArgs(object argument, object result, int priority, Exception error, bool cancelled)
Parameters
Type | Name | Description |
---|---|---|
System.Object | argument | The argument of an asynchronous operation. |
System.Object | result | The result of an asynchronous operation. |
System.Int32 | priority | A value between 0 and 5 indicating the priority of this item. |
System.Exception | error | The error that occurred while loading the image. |
System.Boolean | cancelled | A value indicating whether the asynchronous operation was canceled. |
Properties
| Improve this Doc View SourcePriority
Gets the priority of this item.
Declaration
public int Priority { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Result
Gets a value that represents the result of an asynchronous operation.
Declaration
public object Result { get; }
Property Value
Type | Description |
---|---|
System.Object |