1 type derived from IsolatedStorage
mscorlib (1)
system\io\isolatedstorage\isolatedstoragefile.cs (1)
49public sealed class IsolatedStorageFile : IsolatedStorage, IDisposable
15 references to IsolatedStorage
mscorlib (15)
system\io\isolatedstorage\isolatedstoragefile.cs (15)
2652if (IsolatedStorage.IsRoaming(m_Scope)) 2653scope = IsolatedStorage.c_DomainRoaming; 2654else if (IsolatedStorage.IsMachine(m_Scope)) 2655scope = IsolatedStorage.c_MachineDomain; 2657scope = IsolatedStorage.c_Domain; 2671if (IsolatedStorage.IsRoaming(m_Scope)) 2672scope = IsolatedStorage.c_AssemblyRoaming; 2673else if(IsolatedStorage.IsMachine(m_Scope)) 2674scope = IsolatedStorage.c_MachineAssembly; 2676scope = IsolatedStorage.c_Assembly; 2689if (IsolatedStorage.IsRoaming(m_Scope)) 2690scope = IsolatedStorage.c_AppUserRoaming; 2691else if(IsolatedStorage.IsMachine(m_Scope)) 2692scope = IsolatedStorage.c_AppMachine; 2694scope = IsolatedStorage.c_AppUser;