C# Class WebDav.LockResponse

Represents a response of the LOCK operation.
Inheritance: WebDavResponse
显示文件 Open project: skazantsev/WebDavClient

Public Methods

Method Description
LockResponse ( int statusCode ) : System.Collections.Generic

Initializes a new instance of the LockResponse class.

LockResponse ( int statusCode, IEnumerable activeLocks ) : System.Collections.Generic

Initializes a new instance of the LockResponse class.

LockResponse ( int statusCode, string description ) : System.Collections.Generic

Initializes a new instance of the LockResponse class.

LockResponse ( int statusCode, string description, IEnumerable activeLocks ) : System.Collections.Generic

Initializes a new instance of the LockResponse class.

ToString ( ) : string

Method Details

LockResponse() public method

Initializes a new instance of the LockResponse class.
public LockResponse ( int statusCode ) : System.Collections.Generic
statusCode int The status code of the operation.
return System.Collections.Generic

LockResponse() public method

Initializes a new instance of the LockResponse class.
public LockResponse ( int statusCode, IEnumerable activeLocks ) : System.Collections.Generic
statusCode int The status code of the response.
activeLocks IEnumerable The active locks of the resource.
return System.Collections.Generic

LockResponse() public method

Initializes a new instance of the LockResponse class.
public LockResponse ( int statusCode, string description ) : System.Collections.Generic
statusCode int The status code of the response.
description string The description of the response.
return System.Collections.Generic

LockResponse() public method

Initializes a new instance of the LockResponse class.
public LockResponse ( int statusCode, string description, IEnumerable activeLocks ) : System.Collections.Generic
statusCode int The status code of the response.
description string The description of the response.
activeLocks IEnumerable The active locks of the resource.
return System.Collections.Generic

ToString() public method

public ToString ( ) : string
return string