C# Class Client.WebDavFolder

Inheritance: WebDavHierarchyItem, IFolder
Afficher le fichier Open project: ringostarr80/WebDav.NET

Méthodes publiques

Méthode 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

Méthode Description
ProcessResponse ( string response ) : void

Processes the response from the server.

Method Details

CreateFolder() public méthode

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

CreateResource() public méthode

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

GetChildren() public méthode

Returns children of this folder.
public GetChildren ( ) : IHierarchyItem[]
Résultat IHierarchyItem[]

GetResource() public méthode

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

Open() public méthode

Opens the folder.
public Open ( ) : void
Résultat void

Open() public méthode

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

Open() public méthode

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

WebDavFolder() public méthode

The constructor
public WebDavFolder ( ) : System
Résultat System

WebDavFolder() public méthode

The constructor
public WebDavFolder ( Uri path ) : System
path System.Uri Path to the folder.
Résultat System

WebDavFolder() public méthode

The constructor
public WebDavFolder ( string path ) : System
path string Path to the folder.
Résultat System