C# Class WebDav.WebDavStreamResponse

Represents a response of the GET operation. The class has to be properly disposed.
Inheritance: WebDavResponse, IDisposable
Afficher le fichier Open project: skazantsev/WebDavClient

Méthodes publiques

Méthode Description
Dispose ( ) : void
ToString ( ) : string
WebDavStreamResponse ( HttpResponseMessage response, Stream stream ) : System

Initializes a new instance of the WebDavStreamResponse class.

WebDavStreamResponse ( int statusCode ) : System.IO

Initializes a new instance of the WebDavStreamResponse class.

WebDavStreamResponse ( int statusCode, Stream stream ) : System.IO

Initializes a new instance of the WebDavStreamResponse class.

WebDavStreamResponse ( int statusCode, string description ) : System.IO

Initializes a new instance of the WebDavStreamResponse class.

WebDavStreamResponse ( int statusCode, string description, Stream stream ) : System.IO

Initializes a new instance of the WebDavStreamResponse class.

Method Details

Dispose() public méthode

public Dispose ( ) : void
Résultat void

ToString() public méthode

public ToString ( ) : string
Résultat string

WebDavStreamResponse() public méthode

Initializes a new instance of the WebDavStreamResponse class.
public WebDavStreamResponse ( HttpResponseMessage response, Stream stream ) : System
response HttpResponseMessage The raw http response.
stream Stream The stream of content of the resource.
Résultat System

WebDavStreamResponse() public méthode

Initializes a new instance of the WebDavStreamResponse class.
public WebDavStreamResponse ( int statusCode ) : System.IO
statusCode int The status code of the operation.
Résultat System.IO

WebDavStreamResponse() public méthode

Initializes a new instance of the WebDavStreamResponse class.
public WebDavStreamResponse ( int statusCode, Stream stream ) : System.IO
statusCode int The status code of the response.
stream System.IO.Stream The stream of resource's content.
Résultat System.IO

WebDavStreamResponse() public méthode

Initializes a new instance of the WebDavStreamResponse class.
public WebDavStreamResponse ( int statusCode, string description ) : System.IO
statusCode int The status code of the response.
description string The description of the response.
Résultat System.IO

WebDavStreamResponse() public méthode

Initializes a new instance of the WebDavStreamResponse class.
public WebDavStreamResponse ( int statusCode, string description, Stream stream ) : System.IO
statusCode int The status code of the response.
description string The description of the response.
stream System.IO.Stream The stream of content of the resource.
Résultat System.IO