Isolated storage is a .NET Framework data storage mechanism that provides isolation and safety by defining standardized ways of associating code with saved data. Standardization provides other benefits as well.

Administrators can use tools designed to manipulate isolated storage to configure file storage space, set security policies, and delete unused data. If the program does not have permission to access the file system, administrators can still use isolated storage.

With isolated storage, developers can store their application data and prevent it from being accessed by other .NET Framework programs.

The isolated storage in this solution is used to store:

See Also