C# Class Innovatian.Configuration.IsoStorageConfigurationSource

Inheritance: AbstractConfigurationSource
Mostra file Open project: idavis/innovatian.configuration

Public Methods

Method Description
IsoStorageConfigurationSource ( IsolatedStorageScope scope, string fileName ) : System

Initializes a new instance of the IsoStorageConfigurationSource class.

If you specify invalid scope for your application, you will get an IsolatedStorageException.

IsoStorageConfigurationSource ( string fileName ) : System

Initializes a new instance of the IsoStorageConfigurationSource class.

If you specify invalid scope for your application, you will get an IsolatedStorageException.

Reload ( ) : void

Discards all sections and merged sources and reloads a fresh set of settings.

Save ( ) : void

Saves all sections. All data merged from other merged sources will be included.

Private Methods

Method Description
Load ( ) : void

Method Details

IsoStorageConfigurationSource() public method

Initializes a new instance of the IsoStorageConfigurationSource class.
If you specify invalid scope for your application, you will get an IsolatedStorageException.
public IsoStorageConfigurationSource ( IsolatedStorageScope scope, string fileName ) : System
scope IsolatedStorageScope /// The scope for the isolated storage file. ///
fileName string /// Name of the file. ///
return System

IsoStorageConfigurationSource() public method

Initializes a new instance of the IsoStorageConfigurationSource class.
If you specify invalid scope for your application, you will get an IsolatedStorageException.
public IsoStorageConfigurationSource ( string fileName ) : System
fileName string /// Name of the file. ///
return System

Reload() public method

Discards all sections and merged sources and reloads a fresh set of settings.
public Reload ( ) : void
return void

Save() public method

Saves all sections. All data merged from other merged sources will be included.
public Save ( ) : void
return void