System.IO.IsolatedStorage Namespace

The System.IO.IsolatedStorage namespace contains types that allow the creation and use of isolated stores. With these stores, you can read and write data that less trusted code cannot access and prevent the exposure of sensitive information that can be saved elsewhere on the file system. Data is stored in compartments that are isolated by the current user and by the assembly in which the code exists. Additionally, data can be isolated by domain. Roaming profiles can be used in conjunction with isolated storage so isolated stores will travel with the user's profile. The System.IO.IsolatedStorage.IsolatedStorageScope enumeration indicates different types of isolation. For more information about when to use isolated storage, see Isolated Storage.

Remarks

The System.IO.IsolatedStorage.IsolatedStorageFile class provides most of the necessary functionality for isolated storage. Use this class to obtain, delete and manage isolated storage. The System.IO.IsolatedStorage.IsolatedStorageFileStream class handles reading and writing files to a store. This is similar to reading and writing in standard File I/O classes. For more information about I/O, see the System.IO namespace.

For examples using isolated storage, see Isolated Storage

Classes

TypeReason
INormalizeForIsolatedStorage

Enables comparisons between an isolated store and an application domain and assembly's evidence.

IsolatedStorage

Represents the abstract base class from which all isolated storage implementations must derive.

IsolatedStorageException

The exception that is thrown when an operation in isolated storage fails.

IsolatedStorageFile

Represents an isolated storage area containing files and directories.

IsolatedStorageFileStream

Exposes a file within isolated storage.

IsolatedStorageScope

Enumerates the levels of isolated storage scope that are supported by System.IO.IsolatedStorage.IsolatedStorage.

IsolatedStorageSecurityOptions

Specifies options that affect security in isolated storage.

IsolatedStorageSecurityState

Provides settings for maintaining the quota size for isolated storage.