Class AsyncResult<T>
Inheritance
AsyncResult<T>
Assembly: VivoxUnity.dll
Syntax
public class AsyncResult<T> : IAsyncResult, IDisposable
Type Parameters
Constructors
AsyncResult(AsyncCallback)
Declaration
public AsyncResult(AsyncCallback callback)
Parameters
Properties
AsyncState
Declaration
public object AsyncState { get; set; }
Property Value
AsyncWaitHandle
Declaration
public WaitHandle AsyncWaitHandle { get; }
Property Value
Callback
Declaration
public AsyncCallback Callback { get; set; }
Property Value
CompletedSynchronously
Declaration
public bool CompletedSynchronously { get; set; }
Property Value
IsCompleted
Declaration
public bool IsCompleted { get; }
Property Value
Result
Declaration
Property Value
Methods
Dispose()
Declaration
SetComplete(Exception)
Declaration
public void SetComplete(Exception exception)
Parameters
SetComplete(T)
Declaration
public void SetComplete(T result)
Parameters
Type |
Name |
Description |
T |
result |
|
SetCompletedSynchronously(T)
Declaration
public void SetCompletedSynchronously(T result)
Parameters
Type |
Name |
Description |
T |
result |
|
Implements