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