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;