C# Class FluentHttp.FluentHttpAsyncResult

Represents the fluent http async result.
Inheritance: IAsyncResult
Exibir arquivo Open project: prabirshrestha/FluentHttp Class Usage Examples

Public Methods

Method Description
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.

Method Details

FluentHttpAsyncResult() public method

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.
return System