[]
Creates a new instance of LongOperationEventArgs with default properties (Complete=0, CanCancel=false).
public LongOperationEventArgs()
Creates a new instance of LongOperationEventArgs with the specified complete value and CanCancel=false.
public LongOperationEventArgs(double complete)
Type | Name | Description |
---|---|---|
double | complete | How much is complete (from 0 to 1). |
Creates a new instance of LongOperationEventArgs with the specified complete and CanCancel values.
public LongOperationEventArgs(double complete, bool canCancel)
Type | Name | Description |
---|---|---|
double | complete | How much is complete (from 0 to 1). |
bool | canCancel | Whether the operation can be cancelled. |
Creates a new instance of LongOperationEventArgs with the specified CanCancel value and Complete=0.
public LongOperationEventArgs(bool canCancel)
Type | Name | Description |
---|---|---|
bool | canCancel | Whether the operation can be cancelled. |