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