C# Class Sanford.Threading.AsyncResult

Provides basic implementation of the IAsyncResult interface.
Inheritance: IAsyncResult
ファイルを表示 Open project: hmadrigal/playground-dotnet

Public Methods

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.

Method Details

AsyncResult() public method

Initializes a new instance of the AsyncResult object with the specified owner of the AsyncResult object, the optional callback delegate, and optional state object.
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

Signal() public method

Signals that the operation has completed.
public Signal ( ) : void
return void