Namespace:
System.IO.IsolatedStorage
Assembly:
System.Windows (in System.Windows.dll)
Visual Basic (Declaration)
Public Shared ReadOnly Property ApplicationSettings As IsolatedStorageSettings
Get
Dim value As IsolatedStorageSettings
value = IsolatedStorageSettings.ApplicationSettings
public static IsolatedStorageSettings ApplicationSettings { get; }
Use the ApplicationSettings property to create a new instance of the dictionary used to store key-value pairs in isolated storage.
ApplicationSettings are specific to a user and an application. The application scope is determined by the full path of the application.
The following example initializes an ApplicationSettings dictionary.
[Visual Basic]
Private userSettings As IsolatedStorageSettings = _
IsolatedStorageSettings.ApplicationSettings
[C#]
private IsolatedStorageSettings userSettings =
IsolatedStorageSettings.ApplicationSettings;
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
Reference
Other Resources