C# Класс WebDav.WebDavStreamResponse

Represents a response of the GET operation. The class has to be properly disposed.
Наследование: WebDavResponse, IDisposable
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Описание методов

Dispose() публичный Метод

public Dispose ( ) : void
Результат void

ToString() публичный Метод

public ToString ( ) : string
Результат string

WebDavStreamResponse() публичный Метод

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.
Результат System

WebDavStreamResponse() публичный Метод

Initializes a new instance of the WebDavStreamResponse class.
public WebDavStreamResponse ( int statusCode ) : System.IO
statusCode int The status code of the operation.
Результат System.IO

WebDavStreamResponse() публичный Метод

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.
Результат System.IO

WebDavStreamResponse() публичный Метод

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.
Результат System.IO

WebDavStreamResponse() публичный Метод

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.
Результат System.IO