C# 클래스 WebDav.WebDavStreamResponse

Represents a response of the GET operation. The class has to be properly disposed.
상속: WebDavResponse, IDisposable
파일 보기 프로젝트 열기: skazantsev/WebDavClient

공개 메소드들

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