C# 클래스 FluentHttp.FluentHttpAsyncResult

Represents the fluent http async result.
상속: IAsyncResult
파일 보기 프로젝트 열기: prabirshrestha/FluentHttp 1 사용 예제들

공개 메소드들

메소드 설명
FluentHttpAsyncResult ( FluentHttpRequest request, FluentHttpResponse response, object asyncState, WaitHandle asyncWaitHandle, bool completedSynchronously, bool isCompleted, bool isCancelled, Exception exception, Exception innerException ) : System

Initializes a new instance of the FluentHttpAsyncResult class.

메소드 상세

FluentHttpAsyncResult() 공개 메소드

Initializes a new instance of the FluentHttpAsyncResult class.
public FluentHttpAsyncResult ( FluentHttpRequest request, FluentHttpResponse response, object asyncState, WaitHandle asyncWaitHandle, bool completedSynchronously, bool isCompleted, bool isCancelled, Exception exception, Exception innerException ) : System
request FluentHttpRequest The .
response FluentHttpResponse The .
asyncState object The async state.
asyncWaitHandle System.Threading.WaitHandle The async wait handle.
completedSynchronously bool Indicates whether the async operation completed synchronously.
isCompleted bool Indicates whether the async operation completed.
isCancelled bool Indicates whether the async operation was cancelled.
exception System.Exception The exception during the http web request.
innerException System.Exception The inner exception during the http web request.
리턴 System