Method | Description | |
---|---|---|
AsyncResult ( object owner, AsyncCallback callback, object state ) : System |
Initializes a new instance of the AsyncResult object with the specified owner of the AsyncResult object, the optional callback delegate, and optional state object.
|
|
Signal ( ) : void |
Signals that the operation has completed.
|
public AsyncResult ( object owner, AsyncCallback callback, object state ) : System | ||
owner | object | /// The owner of the AsyncResult object. /// |
callback | AsyncCallback | /// An optional asynchronous callback, to be called when the /// operation is complete. /// |
state | object | /// A user-provided object that distinguishes this particular /// asynchronous request from other requests. /// |
return | System |