112 references to IsolatedStorageScope
mscorlib (112)
system\io\isolatedstorage\isolatedstorage.cs (65)
66internal const IsolatedStorageScope c_Assembly = 67(IsolatedStorageScope.User | 68IsolatedStorageScope.Assembly); 70internal const IsolatedStorageScope c_Domain = 71(IsolatedStorageScope.User | 72IsolatedStorageScope.Assembly | 73IsolatedStorageScope.Domain); 75internal const IsolatedStorageScope c_AssemblyRoaming = 76(IsolatedStorageScope.Roaming | 77IsolatedStorageScope.User | 78IsolatedStorageScope.Assembly); 80internal const IsolatedStorageScope c_DomainRoaming = 81(IsolatedStorageScope.Roaming | 82IsolatedStorageScope.User | 83IsolatedStorageScope.Assembly | 84IsolatedStorageScope.Domain); 86internal const IsolatedStorageScope c_MachineAssembly = 87(IsolatedStorageScope.Machine | 88IsolatedStorageScope.Assembly); 90internal const IsolatedStorageScope c_MachineDomain = 91(IsolatedStorageScope.Machine | 92IsolatedStorageScope.Assembly | 93IsolatedStorageScope.Domain); 95internal const IsolatedStorageScope c_AppUser = 96(IsolatedStorageScope.Application | 97IsolatedStorageScope.User); 99internal const IsolatedStorageScope c_AppMachine = 100(IsolatedStorageScope.Application | 101IsolatedStorageScope.Machine); 103internal const IsolatedStorageScope c_AppUserRoaming = 104(IsolatedStorageScope.Roaming | 105IsolatedStorageScope.Application | 106IsolatedStorageScope.User); 127private IsolatedStorageScope m_Scope; 148internal static bool IsRoaming(IsolatedStorageScope scope) 150return ((scope & IsolatedStorageScope.Roaming) != 0); 155return ((m_Scope & IsolatedStorageScope.Roaming) != 0); 159internal static bool IsDomain(IsolatedStorageScope scope) 161return ((scope & IsolatedStorageScope.Domain) != 0); 166return ((m_Scope & IsolatedStorageScope.Domain) != 0); 179internal static bool IsMachine(IsolatedStorageScope scope) 181return ((scope & IsolatedStorageScope.Machine) != 0); 186return ((m_Scope & IsolatedStorageScope.Assembly) != 0); 191internal static bool IsApp(IsolatedStorageScope scope) 193return ((scope & IsolatedStorageScope.Application) != 0); 198return ((m_Scope & IsolatedStorageScope.Application) != 0); 488internal MemoryStream GetIdentityStream(IsolatedStorageScope scope) 512public IsolatedStorageScope Scope 557protected void InitStore(IsolatedStorageScope scope, 612protected void InitStore(IsolatedStorageScope scope, 662internal void InitStore(IsolatedStorageScope scope, 728internal void InitStore(IsolatedStorageScope scope, 759internal bool InitStore(IsolatedStorageScope scope, 804private void _InitStore(IsolatedStorageScope scope, 845IsolatedStorageScope.Application, out typeHash, out instanceHash); 851assemEv, assemblyEvidenceType, IsolatedStorageScope.Assembly, 859IsolatedStorageScope.Domain, out typeHash, out instanceHash); 869Evidence evidence, Type evidenceType, IsolatedStorageScope fAssmDomApp, 961Evidence evidence, Type evidenceType, IsolatedStorageScope fAssmDomApp, 989if (fAssmDomApp == IsolatedStorageScope.Domain) 993else if (fAssmDomApp == IsolatedStorageScope.Application) 1009if (fAssmDomApp == IsolatedStorageScope.Domain) 1013else if (fAssmDomApp == IsolatedStorageScope.Application) 1063private static void DemandPermission(IsolatedStorageScope scope) 1157internal static void VerifyScope(IsolatedStorageScope scope)
system\io\isolatedstorage\isolatedstoragefile.cs (47)
87private IsolatedStorageScope m_StoreScope; 97IsolatedStorageScope.Assembly| 98IsolatedStorageScope.Domain| 99IsolatedStorageScope.User, 108IsolatedStorageScope.Assembly| 109IsolatedStorageScope.User, 118IsolatedStorageScope.Application| 119IsolatedStorageScope.User, 133IsolatedStorageScope.Assembly| 134IsolatedStorageScope.Domain| 135IsolatedStorageScope.Machine, 144IsolatedStorageScope.Assembly| 145IsolatedStorageScope.Machine, 154IsolatedStorageScope.Application| 155IsolatedStorageScope.Machine, 162public static IsolatedStorageFile GetStore(IsolatedStorageScope scope, 185public static IsolatedStorageFile GetStore(IsolatedStorageScope scope, 208public static IsolatedStorageFile GetStore(IsolatedStorageScope scope, 233public static IsolatedStorageFile GetStore(IsolatedStorageScope scope, 248public static IsolatedStorageFile GetStore(IsolatedStorageScope scope, 416if (m_StoreScope != (IsolatedStorageScope.Application | IsolatedStorageScope.User)) { 1555public static void Remove(IsolatedStorageScope scope) 1581public static IEnumerator GetEnumerator(IsolatedStorageScope scope) 1649internal void Init(IsolatedStorageScope scope) 1693CreateIDFile(sb.ToString(), IsolatedStorageScope.Application); 1719CreateIDFile(sb.ToString(), IsolatedStorageScope.Domain); 1745CreateIDFile(sb.ToString(), IsolatedStorageScope.Assembly); 1793if (scope == (IsolatedStorageScope.Application | IsolatedStorageScope.User)) { 1827internal bool InitExistingStore(IsolatedStorageScope scope) 1884if (scope == (IsolatedStorageScope.Application | IsolatedStorageScope.User)) { 1955internal static String GetRootDir(IsolatedStorageScope scope) 1990private static void InitGlobalsMachine(IsolatedStorageScope scope) 2035private static void InitGlobalsNonRoamingUser(IsolatedStorageScope scope) 2303IsolatedStorageScope scope) 2352internal static void VerifyGlobalScope(IsolatedStorageScope scope) 2354if ((scope != IsolatedStorageScope.User) && 2355(scope != (IsolatedStorageScope.User| 2356IsolatedStorageScope.Roaming)) && 2357(scope != IsolatedStorageScope.Machine)) 2381internal void CreateIDFile(String path, IsolatedStorageScope scope) 2540internal static extern void GetRootDir(IsolatedStorageScope scope, StringHandleOnStack retRootDir); 2581private IsolatedStorageScope m_Scope; 2593internal IsolatedStorageFileEnumerator(IsolatedStorageScope scope) 2608IsolatedStorageScope scope;