C# 클래스 FluentHttp.ResponseHeadersReceivedEventArgs

Represents the event args for response headers received.
상속: System.EventArgs
파일 보기 프로젝트 열기: prabirshrestha/FluentHttp 1 사용 예제들

공개 메소드들

메소드 설명
ResponseHeadersReceivedEventArgs ( FluentHttpResponse response, Exception exception, object asyncState ) : System

Initializes a new instance of the ResponseHeadersReceivedEventArgs class.

SaveResponseIn ( Stream stream ) : void

Sets the response stream.

메소드 상세

ResponseHeadersReceivedEventArgs() 공개 메소드

Initializes a new instance of the ResponseHeadersReceivedEventArgs class.
public ResponseHeadersReceivedEventArgs ( FluentHttpResponse response, Exception exception, object asyncState ) : System
response FluentHttpResponse /// The response. ///
exception System.Exception
asyncState object The async state
리턴 System

SaveResponseIn() 공개 메소드

Sets the response stream.
public SaveResponseIn ( Stream stream ) : void
stream Stream The stream to save reponse into.
리턴 void