C# Класс Sanford.Threading.AsyncResult

Provides basic implementation of the IAsyncResult interface.
Наследование: IAsyncResult
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

AsyncResult() публичный Метод

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. ///
Результат System

Signal() публичный Метод

Signals that the operation has completed.
public Signal ( ) : void
Результат void