1 out of 2 rated this helpful - Rate this topic

IsolatedStorageScope Enumeration

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

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

Namespace: System.IO.IsolatedStorage
Assembly: mscorlib (in mscorlib.dll)

[SerializableAttribute] 
[ComVisibleAttribute(true)] 
[FlagsAttribute] 
public enum IsolatedStorageScope
/** @attribute SerializableAttribute() */ 
/** @attribute ComVisibleAttribute(true) */ 
/** @attribute FlagsAttribute() */ 
public enum IsolatedStorageScope
SerializableAttribute 
ComVisibleAttribute(true) 
FlagsAttribute 
public enum IsolatedStorageScope
  Member name Description
Application Isolated storage scoped to the application. 
Assembly Isolated storage scoped to the identity of the assembly. 
Domain Isolated storage scoped to the application domain identity. 
Machine Isolated storage scoped to the machine. 
None No isolated storage usage. 
Roaming The isolated store can be placed in a location on the file system that might roam (if roaming user data is enabled on the underlying operating system). 
User Isolated storage scoped by user identity. 

Use IsolatedStorageScope to specify a degree of scope for an isolated store. You can specify combinations of these levels that are supported by IsolatedStorage.

The following code example demonstrates how the IsolatedStorageScope enumeration is used in the GetStore methods.


// Retrieve an IsolatedStorageFile for the current Domain and Assembly.
IsolatedStorageFile isoFile =
    IsolatedStorageFile.GetStore(IsolatedStorageScope.User |
    IsolatedStorageScope.Assembly |
    IsolatedStorageScope.Domain,
    null,
    null);

IsolatedStorageFileStream isoStream =
    new IsolatedStorageFileStream(this.userName,
    FileMode.Open,
    FileAccess.Read,
    FileShare.Read);

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0, 1.1, 1.0
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ