System
Interface IAsyncResult


public interface IAsyncResult

Represents the status of an asynchronous operation.

Author:
Halofreak1990

Method Summary
 java.lang.Object AsyncState()
          Gets a user-defined object that qualifies or contains information about an asynchronous operation.
 boolean CompletedSynchronously()
          Gets an indication of whether the asynchronous operation completed synchronously.
 boolean IsCompleted()
          Gets an indication whether the asynchronous operation has completed.
 

Method Detail

AsyncState

java.lang.Object AsyncState()
Gets a user-defined object that qualifies or contains information about an asynchronous operation.

Returns:
A user-defined object that qualifies or contains information about an asynchronous operation.

CompletedSynchronously

boolean CompletedSynchronously()
Gets an indication of whether the asynchronous operation completed synchronously.

Returns:
true if the asynchronous operation completed synchronously; otherwise, false.

IsCompleted

boolean IsCompleted()
Gets an indication whether the asynchronous operation has completed.

Returns:
true if the operation is complete; otherwise, false.