C# Класс Client.WebDavFolder

Наследование: WebDavHierarchyItem, IFolder
Показать файл Открыть проект

Открытые методы

Метод Описание
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

Приватные методы

Метод Описание
ProcessResponse ( string response ) : void

Processes the response from the server.

Описание методов

CreateFolder() публичный Метод

Creates new folder with specified name as child of this one.
public CreateFolder ( string name ) : IFolder
name string Name of the new folder.
Результат IFolder

CreateResource() публичный Метод

Creates a resource with a specified name.
public CreateResource ( string name ) : IResource
name string Name of the new resource.
Результат IResource

GetChildren() публичный Метод

Returns children of this folder.
public GetChildren ( ) : IHierarchyItem[]
Результат IHierarchyItem[]

GetResource() публичный Метод

Gets the specified resource from server.
public GetResource ( string name ) : IResource
name string Name of the resource.
Результат IResource

Open() публичный Метод

Opens the folder.
public Open ( ) : void
Результат void

Open() публичный Метод

Opens the folder
public Open ( Uri path ) : void
path System.Uri Path of the folder to open.
Результат void

Open() публичный Метод

Opens the folder
public Open ( string path ) : void
path string Path of the folder to open.
Результат void

WebDavFolder() публичный Метод

The constructor
public WebDavFolder ( ) : System
Результат System

WebDavFolder() публичный Метод

The constructor
public WebDavFolder ( Uri path ) : System
path System.Uri Path to the folder.
Результат System

WebDavFolder() публичный Метод

The constructor
public WebDavFolder ( string path ) : System
path string Path to the folder.
Результат System