C# Class FluentHttp.HttpWebRequestWrapper

Inheritance: IHttpWebRequest
Exibir arquivo Open project: prabirshrestha/FluentHttp

Public Methods

Method Description
BeginGetRequestStream ( AsyncCallback callback, object state ) : IAsyncResult

Beggins getting the request stream.

BeginGetResponse ( AsyncCallback callback, object state ) : IAsyncResult

Begins the get response.

EndGetRequestStream ( IAsyncResult asyncResult ) : Stream

Ends the get request stream.

EndGetResponse ( IAsyncResult asyncResult ) : IHttpWebResponse

Ends the http web get response.

GetRequestStream ( ) : Stream
GetResponse ( ) : IHttpWebResponse
HttpWebRequestWrapper ( HttpWebRequest httpWebRequest ) : System

Initializes a new instance of the HttpWebRequestWrapper class.

Method Details

BeginGetRequestStream() public method

Beggins getting the request stream.
public BeginGetRequestStream ( AsyncCallback callback, object state ) : IAsyncResult
callback AsyncCallback /// The callback. ///
state object /// The state. ///
return IAsyncResult

BeginGetResponse() public method

Begins the get response.
public BeginGetResponse ( AsyncCallback callback, object state ) : IAsyncResult
callback AsyncCallback /// The callback. ///
state object /// The state. ///
return IAsyncResult

EndGetRequestStream() public method

Ends the get request stream.
public EndGetRequestStream ( IAsyncResult asyncResult ) : Stream
asyncResult IAsyncResult /// The async result. ///
return Stream

EndGetResponse() public method

Ends the http web get response.
public EndGetResponse ( IAsyncResult asyncResult ) : IHttpWebResponse
asyncResult IAsyncResult /// The async result. ///
return IHttpWebResponse

GetRequestStream() public method

public GetRequestStream ( ) : Stream
return Stream

GetResponse() public method

public GetResponse ( ) : IHttpWebResponse
return IHttpWebResponse

HttpWebRequestWrapper() public method

Initializes a new instance of the HttpWebRequestWrapper class.
public HttpWebRequestWrapper ( HttpWebRequest httpWebRequest ) : System
httpWebRequest System.Net.HttpWebRequest /// The http web request. ///
return System