C# Class Sanford.Threading.AsyncResult

Provides basic implementation of the IAsyncResult interface.
Inheritance: IAsyncResult
Afficher le fichier Open project: hmadrigal/playground-dotnet

Méthodes publiques

Méthode 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 méthode

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. ///
Résultat System

Signal() public méthode

Signals that the operation has completed.
public Signal ( ) : void
Résultat void