C# Класс ALFA.Shared.AzureFileStoreDirectory

This class encapsulates an Azure backend implementation of the FileStoreDirectory abstraction.
Наследование: FileStoreDirectory
Показать файл Открыть проект

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

Метод Описание
GetDirectories ( ) : IEnumerable

List all directories directly parented to this directory.

GetDirectoryReference ( string ItemName ) : FileStoreDirectory

Obtain a reference to a subdirectory by name.

GetFileReference ( string FileName ) : FileStoreFile

Obtain a reference to a file by name.

GetFiles ( ) : IEnumerable

List all files directly parented to this directory.

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

Метод Описание
AzureFileStoreDirectory ( Microsoft.WindowsAzure.Storage.Blob.CloudBlobDirectory Directory ) : System

Instantiate a new AzureFileStoreDirectory from an Azure directory.

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

GetDirectories() публичный метод

List all directories directly parented to this directory.
public GetDirectories ( ) : IEnumerable
Результат IEnumerable

GetDirectoryReference() публичный метод

Obtain a reference to a subdirectory by name.
public GetDirectoryReference ( string ItemName ) : FileStoreDirectory
ItemName string The name of the virtual /// subdirectory.
Результат FileStoreDirectory

GetFileReference() публичный метод

Obtain a reference to a file by name.
public GetFileReference ( string FileName ) : FileStoreFile
FileName string A string containing the name of the /// file.
Результат FileStoreFile

GetFiles() публичный метод

List all files directly parented to this directory.
public GetFiles ( ) : IEnumerable
Результат IEnumerable