C# 클래스 Dev2.Studio.Core.InterfaceImplementors.DirectoryPersistenceProvider

A directory persistence provider.
상속: IDirectoryPersistenceProvider
파일 보기 프로젝트 열기: Warewolf-ESB/Warewolf

공개 메소드들

메소드 설명
Delete ( string fileName ) : void

Deletes the specified file.

Read ( ) : IEnumerable

Gets an enumeration of all content from the files in DirectoryPath.

Read ( string fileName ) : string

Reads the contents of the specified file.

Write ( string fileName, string data ) : void

Writes the given data to a text file.

비공개 메소드들

메소드 설명
GetFilePath ( string containerName ) : string

메소드 상세

Delete() 공개 메소드

Deletes the specified file.
public Delete ( string fileName ) : void
fileName string The name of the file to be deleted excluding extension.
리턴 void

Read() 공개 메소드

Gets an enumeration of all content from the files in DirectoryPath.
public Read ( ) : IEnumerable
리턴 IEnumerable

Read() 공개 메소드

Reads the contents of the specified file.
public Read ( string fileName ) : string
fileName string The name of the file to be read, excluding extension.
리턴 string

Write() 공개 메소드

Writes the given data to a text file.
public Write ( string fileName, string data ) : void
fileName string The name of the file to be written excluding extension.
data string The data to be written.
리턴 void