Class AsyncNoResult
Inheritance
AsyncNoResult
Assembly: VivoxUnity.dll
Syntax
public class AsyncNoResult : IAsyncResult, IDisposable
Constructors
AsyncNoResult(AsyncCallback)
Declaration
public AsyncNoResult(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
Methods
CheckForError()
Declaration
public void CheckForError()
Dispose()
Declaration
SetComplete()
Declaration
public void SetComplete()
SetComplete(Exception)
Declaration
public void SetComplete(Exception exception)
Parameters
SetCompletedSynchronously()
Declaration
public void SetCompletedSynchronously()
Implements