Namespace: System.IO.IsolatedStorage

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 IsolatedStorageScope enumeration indicates different types of isolation. For more information about when to use isolated storage, see the the conceptual topic at MSDN: usingisolatedstorage topic.

The System.IO.IsolatedStorage.IsolatedStorageFileClassTopic class provides most of the necessary functionality for isolated storage. Use this class to obtain, delete and manage isolated storage. System.IO.IsolatedStorage.IsolatedStorageFileStreamClassTopic 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 the conceptual topic at MSDN: usingisolatedstorage.

Members of System.IO.IsolatedStorage Namespace

Classes
Class Description
class IsolatedStorage Represents the abstract base class from which all isolated storage implementations must derive. 
class IsolatedStorageException The exception that is thrown when an operation in isolated storage fails. 
class IsolatedStorageFile Represents an isolated storage area containing files and directories. 
class IsolatedStorageFileStream Exposes a file within isolated storage. 

Interfaces
Interface Description
interface INormalizeForIsolatedStorage Enables comparisons between an isolated store and an application domain and assembly's evidence. 

Enumerations
Enumeration Description
enumeration IsolatedStorageScope Enumerates the levels of isolated storage scope that are supported by IsolatedStorage

Namepace hierarchy

Copyright (c) 2002 Microsoft Corporation. All rights reserved.