C# Class WebDav.WebDavResponse

Represents a response of a WebDAV operation.
Show file Open project: skazantsev/WebDavClient

Public Methods

Method Description
ToString ( ) : string
WebDavResponse ( int statusCode )

Initializes a new instance of the WebDavResponse class.

WebDavResponse ( int statusCode, string description )

Initializes a new instance of the WebDavResponse class.

Method Details

ToString() public method

public ToString ( ) : string
return string

WebDavResponse() public method

Initializes a new instance of the WebDavResponse class.
public WebDavResponse ( int statusCode )
statusCode int The status code of the operation.

WebDavResponse() public method

Initializes a new instance of the WebDavResponse class.
public WebDavResponse ( int statusCode, string description )
statusCode int The status code of the response.
description string The description of the response.