C# Class Client.WebDavFolder

Inheritance: WebDavHierarchyItem, IFolder
Show file Open project: ringostarr80/WebDav.NET

Public Methods

Method Description
CreateFolder ( string name ) : IFolder

Creates new folder with specified name as child of this one.

CreateResource ( string name ) : IResource

Creates a resource with a specified name.

GetChildren ( ) : IHierarchyItem[]

Returns children of this folder.

GetResource ( string name ) : IResource

Gets the specified resource from server.

Open ( ) : void

Opens the folder.

Open ( Uri path ) : void

Opens the folder

Open ( string path ) : void

Opens the folder

WebDavFolder ( ) : System

The constructor

WebDavFolder ( Uri path ) : System

The constructor

WebDavFolder ( string path ) : System

The constructor

Private Methods

Method Description
ProcessResponse ( string response ) : void

Processes the response from the server.

Method Details

CreateFolder() public method

Creates new folder with specified name as child of this one.
public CreateFolder ( string name ) : IFolder
name string Name of the new folder.
return IFolder

CreateResource() public method

Creates a resource with a specified name.
public CreateResource ( string name ) : IResource
name string Name of the new resource.
return IResource

GetChildren() public method

Returns children of this folder.
public GetChildren ( ) : IHierarchyItem[]
return IHierarchyItem[]

GetResource() public method

Gets the specified resource from server.
public GetResource ( string name ) : IResource
name string Name of the resource.
return IResource

Open() public method

Opens the folder.
public Open ( ) : void
return void

Open() public method

Opens the folder
public Open ( Uri path ) : void
path System.Uri Path of the folder to open.
return void

Open() public method

Opens the folder
public Open ( string path ) : void
path string Path of the folder to open.
return void

WebDavFolder() public method

The constructor
public WebDavFolder ( ) : System
return System

WebDavFolder() public method

The constructor
public WebDavFolder ( Uri path ) : System
path System.Uri Path to the folder.
return System

WebDavFolder() public method

The constructor
public WebDavFolder ( string path ) : System
path string Path to the folder.
return System