Class TaskResult<T>
Mimic a Task<T> but you can set AsyncState
Inheritance
TaskResult<T>
Assembly: Titanium.Web.Proxy.dll
Syntax
public class TaskResult<T> : IAsyncResult
Type Parameters
Constructors
|
Improve this Doc
View Source
TaskResult(Task<T>, Object)
Declaration
public TaskResult(Task<T> pTask, object state)
Parameters
Properties
|
Improve this Doc
View Source
AsyncState
Declaration
public object AsyncState { get; }
Property Value
|
Improve this Doc
View Source
AsyncWaitHandle
Declaration
public WaitHandle AsyncWaitHandle { get; }
Property Value
|
Improve this Doc
View Source
CompletedSynchronously
Declaration
public bool CompletedSynchronously { get; }
Property Value
|
Improve this Doc
View Source
IsCompleted
Declaration
public bool IsCompleted { get; }
Property Value
|
Improve this Doc
View Source
Result
Declaration
Property Value
Implements