mscorlib(4.0.0.0) API with additions
|
Represents the status of an asynchronous operation. More...
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... | |
Represents the status of an asynchronous operation.
Definition at line 9 of file IAsyncResult.cs.
|
get |
Gets a user-defined object that qualifies or contains information about an asynchronous operation.
Definition at line 34 of file IAsyncResult.cs.
|
get |
Gets a T:System.Threading.WaitHandle that is used to wait for an asynchronous operation to complete.
Definition at line 25 of file IAsyncResult.cs.
|
get |
Gets a value that indicates whether the asynchronous operation completed synchronously.
true
if the asynchronous operation completed synchronously; otherwise, false
.Definition at line 44 of file IAsyncResult.cs.
|
get |
Gets a value that indicates whether the asynchronous operation has completed.
true
if the operation is complete; otherwise, false
.Definition at line 16 of file IAsyncResult.cs.