11 references to Assembly
System.IO.IsolatedStorage (11)
System\IO\IsolatedStorage\Helper.cs (1)
138internal static bool IsAssembly(IsolatedStorageScope scope) => ((scope & IsolatedStorageScope.Assembly) != 0);
System\IO\IsolatedStorage\IsolatedStorage.cs (6)
171case IsolatedStorageScope.User | IsolatedStorageScope.Assembly: 172case IsolatedStorageScope.User | IsolatedStorageScope.Assembly | IsolatedStorageScope.Domain: 173case IsolatedStorageScope.Roaming | IsolatedStorageScope.User | IsolatedStorageScope.Assembly: 174case IsolatedStorageScope.Roaming | IsolatedStorageScope.User | IsolatedStorageScope.Assembly | IsolatedStorageScope.Domain: 175case IsolatedStorageScope.Machine | IsolatedStorageScope.Assembly: 176case IsolatedStorageScope.Machine | IsolatedStorageScope.Assembly | IsolatedStorageScope.Domain:
System\IO\IsolatedStorage\IsolatedStorageFile.cs (4)
463return GetStore(IsolatedStorageScope.Assembly | IsolatedStorageScope.User); 468return GetStore(IsolatedStorageScope.Assembly | IsolatedStorageScope.Domain | IsolatedStorageScope.User); 484return GetStore(IsolatedStorageScope.Assembly | IsolatedStorageScope.Machine); 489return GetStore(IsolatedStorageScope.Assembly | IsolatedStorageScope.Domain | IsolatedStorageScope.Machine);