C# 클래스 Sanford.Threading.AsyncResult

Provides basic implementation of the IAsyncResult interface.
상속: IAsyncResult
파일 보기 프로젝트 열기: hmadrigal/playground-dotnet

공개 메소드들

메소드 설명
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