C# 클래스 Elmah.AsyncResult

상속: IAsyncResult
파일 보기 프로젝트 열기: elmah/Elmah 1 사용 예제들

공개 메소드들

메소드 설명
Complete ( ) : bool
Complete ( Exception exception ) : bool
Complete ( Exception exception, bool completedSynchronously ) : bool
End ( IAsyncResult result, object owner, string operationId ) : void

보호된 메소드들

메소드 설명
AsyncResult ( AsyncCallback asyncCallback, object state, object owner, string operationId ) : System
Completed ( Exception exception, bool completedSynchronously ) : void
Completing ( Exception exception, bool completedSynchronously ) : void
MakeCallback ( AsyncCallback callback, AsyncResult result ) : void

비공개 메소드들

메소드 설명
CheckUsage ( object owner, string operationId ) : void
Process ( ) : void

메소드 상세

AsyncResult() 보호된 메소드

protected AsyncResult ( AsyncCallback asyncCallback, object state, object owner, string operationId ) : System
asyncCallback AsyncCallback
state object
owner object
operationId string
리턴 System

Complete() 공개 메소드

public Complete ( ) : bool
리턴 bool

Complete() 공개 메소드

public Complete ( Exception exception ) : bool
exception System.Exception
리턴 bool

Complete() 공개 메소드

public Complete ( Exception exception, bool completedSynchronously ) : bool
exception System.Exception
completedSynchronously bool
리턴 bool

Completed() 보호된 메소드

protected Completed ( Exception exception, bool completedSynchronously ) : void
exception System.Exception
completedSynchronously bool
리턴 void

Completing() 보호된 메소드

protected Completing ( Exception exception, bool completedSynchronously ) : void
exception System.Exception
completedSynchronously bool
리턴 void

End() 공개 정적인 메소드

public static End ( IAsyncResult result, object owner, string operationId ) : void
result IAsyncResult
owner object
operationId string
리턴 void

MakeCallback() 보호된 메소드

protected MakeCallback ( AsyncCallback callback, AsyncResult result ) : void
callback AsyncCallback
result AsyncResult
리턴 void