Class GlobalProgressResult
Represents result of global progress dialog.
public class GlobalProgressResult
- Inheritance
-
GlobalProgressResult
- Inherited Members
Constructors
GlobalProgressResult(bool?, bool, Exception)
Creates new instance of GlobalProgressResult.
public GlobalProgressResult(bool? result, bool canceled, Exception error)
Parameters
Properties
Canceled
Gets value indicating whether the action was canceled by user.
public bool Canceled { get; }
Property Value
Error
Gets failure exception record.
public Exception Error { get; }
Property Value
Result
Gets execution result.
public bool? Result { get; }
Property Value
- bool?