C# Class Microsoft.Silverlight.Testing.Service.IsolatedStorageSettingsProvider

A type that stores global settings in the isolated storage for the application. An implementation of the type.
Inheritance: SettingsProvider
Show file Open project: garyjohnson/wpnest Class Usage Examples

Public Methods

Method Description
Initialize ( ) : void

Initializes the isolated storage settings provider.

IsolatedStorageSettingsProvider ( TestServiceProvider testService ) : System

Initializes a new isolated storage settings provider.

SaveSettings ( Action callback ) : void

Saves the current settings values.

Private Methods

Method Description
InitializeSettings ( ) : void

Initialize the isolated storage application settings object.

LoadSettings ( ) : void

Recalls the stored settings values from isolated storage.

Method Details

Initialize() public method

Initializes the isolated storage settings provider.
public Initialize ( ) : void
return void

IsolatedStorageSettingsProvider() public method

Initializes a new isolated storage settings provider.
public IsolatedStorageSettingsProvider ( TestServiceProvider testService ) : System
testService TestServiceProvider The test service instance.
return System

SaveSettings() public method

Saves the current settings values.
public SaveSettings ( Action callback ) : void
callback Action The service completion callback.
return void