AsyncResultT Methods |
The AsyncResultT generic type exposes the following members.
Name | Description | |
---|---|---|
Begin |
Called at the beginning of a synchronous or asynchronous operation. This method will also construct an AsyncResult
object from the arguments provided and return it.
| |
EndSynchronous |
Called at the end of synchronous processing for the operation. If the operation is
complete, ie SetResult has been called, then the operation was synchronous. Otherwise,
the operation will be completed asynchronously.
| |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
SetException |
Sets an exception result for this Asynchronous operation.
If a result has already been set this function will re-throw an AsyncException.
| |
SetResult |
Sets the result of the operation and calls the operation's callback.
| |
ToString | Returns a string that represents the current object. (Inherited from Object.) |