C# 클래스 FluentHttp.HttpWebRequestWrapper

상속: IHttpWebRequest
파일 보기 프로젝트 열기: prabirshrestha/FluentHttp

공개 메소드들

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

메소드 상세

BeginGetRequestStream() 공개 메소드

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

BeginGetResponse() 공개 메소드

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

EndGetRequestStream() 공개 메소드

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

EndGetResponse() 공개 메소드

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

GetRequestStream() 공개 메소드

public GetRequestStream ( ) : Stream
리턴 Stream

GetResponse() 공개 메소드

public GetResponse ( ) : IHttpWebResponse
리턴 IHttpWebResponse

HttpWebRequestWrapper() 공개 메소드

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