C# Class FluentHttp.ResponseHeadersReceivedEventArgs

Represents the event args for response headers received.
Inheritance: System.EventArgs
Afficher le fichier Open project: prabirshrestha/FluentHttp Class Usage Examples

Méthodes publiques

Méthode Description
ResponseHeadersReceivedEventArgs ( FluentHttpResponse response, Exception exception, object asyncState ) : System

Initializes a new instance of the ResponseHeadersReceivedEventArgs class.

SaveResponseIn ( Stream stream ) : void

Sets the response stream.

Method Details

ResponseHeadersReceivedEventArgs() public méthode

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
Résultat System

SaveResponseIn() public méthode

Sets the response stream.
public SaveResponseIn ( Stream stream ) : void
stream Stream The stream to save reponse into.
Résultat void