C# 클래스 ALFA.Shared.AzureFileStoreContainer

This class encapsulates an Azure backend implementation of the FileStoreContainer abstraction.
상속: FileStoreContainer
파일 보기 프로젝트 열기: ALandFarAway/ALFA-Base-Resources

공개 메소드들

메소드 설명
CreateIfNotExists ( ) : bool

Create the container if it doesn't exist. The container is assumed to be private access only.

GetDirectories ( ) : IEnumerable

List all directories directly parented to this container.

GetDirectoryReference ( string RelativeAddress ) : FileStoreDirectory

Obtain a reference to a directory by name.

GetFileReference ( string FileName ) : FileStoreFile

Obtain a reference to a file by name.

GetFiles ( ) : IEnumerable

List all files directly parented to this container.

비공개 메소드들

메소드 설명
AzureFileStoreContainer ( Microsoft.WindowsAzure.Storage.Blob.CloudBlobContainer Container ) : System

Instantiate a new AzureFileStoreContainer from an Azure container.

메소드 상세

CreateIfNotExists() 공개 메소드

Create the container if it doesn't exist. The container is assumed to be private access only.
public CreateIfNotExists ( ) : bool
리턴 bool

GetDirectories() 공개 메소드

List all directories directly parented to this container.
public GetDirectories ( ) : IEnumerable
리턴 IEnumerable

GetDirectoryReference() 공개 메소드

Obtain a reference to a directory by name.
public GetDirectoryReference ( string RelativeAddress ) : FileStoreDirectory
RelativeAddress string A string containing the name of the /// virtual blob directory.
리턴 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 container.
public GetFiles ( ) : IEnumerable
리턴 IEnumerable