Class AsyncControlHandle<TResult>
Inheritance
AsyncControlHandle<TResult>
Assembly: GoogleSheetFetcher.Editor.dll
Syntax
public class AsyncControlHandle<TResult> : IEnumerator
Type Parameters
Constructors
|
Improve this Doc
View Source
AsyncControlHandle(AsyncControlBase<TResult>)
Declaration
public AsyncControlHandle(AsyncControlBase<TResult> control)
Parameters
Properties
|
Improve this Doc
View Source
Exception
The exception when the processing failure.
Declaration
public Exception Exception { get; }
Property Value
|
Improve this Doc
View Source
IsDone
Whether or not the process completed.
Declaration
public bool IsDone { get; }
Property Value
|
Improve this Doc
View Source
Progress
The progress of the process.
Declaration
public float Progress { get; }
Property Value
|
Improve this Doc
View Source
Result
Declaration
public TResult Result { get; }
Property Value
|
Improve this Doc
View Source
Status
The state of asynchronous processing.
Declaration
public AsyncControlStatus Status { get; }
Property Value
|
Improve this Doc
View Source
Task
Declaration
public Task<TResult> Task { get; }
Property Value
Type |
Description |
Task<TResult> |
|
Methods
|
Improve this Doc
View Source
Cancel()
Declaration
Events
|
Improve this Doc
View Source
Completed
The event that is called at the end of the process.
Declaration
public event Action Completed
Event Type