Represnts the status of an asynchronous operation.
Declaration Syntax
C# | Visual Basic | Visual C++ | J# |
public interface IAsyncResult<T> : IAsyncResult
Public Interface IAsyncResult(Of T) _ Inherits IAsyncResult
generic<typename T> public interface class IAsyncResult : IAsyncResult
Generic Template Parameters
- T
- Type of object that will be the result of the operation.
Members
All Members | Properties | ||||
Icon | Member | Description |
---|---|---|
AsyncState |
Gets a user-defined object that qualifies or contains information about an asynchronous operation.
(Inherited from IAsyncResult.) | |
AsyncWaitHandle |
Gets a WaitHandle that is used to wait for an asynchronous operation to complete.
(Inherited from IAsyncResult.) | |
CompletedSynchronously |
Gets a value that indicates whether the asynchronous operation completed synchronously.
(Inherited from IAsyncResult.) | |
IsCompleted |
Gets a value that indicates whether the asynchronous operation has completed.
(Inherited from IAsyncResult.) |