DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
Public Member Functions | Properties | List of all members
Deveel.Data.Configuration.FileConfigSource Class Reference

A channel used to read from and write to a given file in the underlying file-system. More...

Inheritance diagram for Deveel.Data.Configuration.FileConfigSource:
Deveel.Data.Configuration.IConfigSource

Public Member Functions

 FileConfigSource (string filePath)
 Constructs the source over the file located at the given path within the underlying file-system. More...
 

Properties

string FilePath [get, private set]
 Gets the path to the file. More...
 
Stream InputStream [get]
 
Stream OutputStream [get]
 
- Properties inherited from Deveel.Data.Configuration.IConfigSource
Stream InputStream [get]
 Gets a Stream that is used to load the configurations. More...
 
Stream OutputStream [get]
 Gets a Stream that can be writtern with the configurations from a IConfiguration. More...
 

Detailed Description

A channel used to read from and write to a given file in the underlying file-system.

Definition at line 25 of file FileConfigSource.cs.

Constructor & Destructor Documentation

Deveel.Data.Configuration.FileConfigSource.FileConfigSource ( string  filePath)
inline

Constructs the source over the file located at the given path within the underlying file-system.

Parameters
filePathThe string describing the path where the file is located.

Definition at line 32 of file FileConfigSource.cs.

32  {
33  if (filePath == null)
34  throw new ArgumentNullException("filePath");
35 
36  FilePath = filePath;
37  }
string FilePath
Gets the path to the file.

Property Documentation

string Deveel.Data.Configuration.FileConfigSource.FilePath
getprivate set

Gets the path to the file.

Definition at line 42 of file FileConfigSource.cs.

Stream Deveel.Data.Configuration.FileConfigSource.InputStream
get

Definition at line 45 of file FileConfigSource.cs.

Stream Deveel.Data.Configuration.FileConfigSource.OutputStream
get

Definition at line 56 of file FileConfigSource.cs.


The documentation for this class was generated from the following file: