mscorlib(4.0.0.0) API with additions
System.IAsyncResult Interface Reference

Represents the status of an asynchronous operation. More...

Inheritance diagram for System.IAsyncResult:
[legend]

Properties

bool IsCompleted [get]
 Gets a value that indicates whether the asynchronous operation has completed. More...
 
WaitHandle AsyncWaitHandle [get]
 Gets a T:System.Threading.WaitHandle that is used to wait for an asynchronous operation to complete. More...
 
object AsyncState [get]
 Gets a user-defined object that qualifies or contains information about an asynchronous operation. More...
 
bool CompletedSynchronously [get]
 Gets a value that indicates whether the asynchronous operation completed synchronously. More...
 

Detailed Description

Represents the status of an asynchronous operation.

Definition at line 9 of file IAsyncResult.cs.

Property Documentation

◆ AsyncState

object System.IAsyncResult.AsyncState
get

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.

Definition at line 34 of file IAsyncResult.cs.

◆ AsyncWaitHandle

WaitHandle System.IAsyncResult.AsyncWaitHandle
get

Gets a T:System.Threading.WaitHandle that is used to wait for an asynchronous operation to complete.

Returns
A T:System.Threading.WaitHandle that is used to wait for an asynchronous operation to complete.

Definition at line 25 of file IAsyncResult.cs.

◆ CompletedSynchronously

bool System.IAsyncResult.CompletedSynchronously
get

Gets a value that indicates whether the asynchronous operation completed synchronously.

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

Definition at line 44 of file IAsyncResult.cs.

◆ IsCompleted

bool System.IAsyncResult.IsCompleted
get

Gets a value that indicates whether the asynchronous operation has completed.

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

Definition at line 16 of file IAsyncResult.cs.


The documentation for this interface was generated from the following file: