8 references to Machine
System.IO.IsolatedStorage (8)
System\IO\IsolatedStorage\Helper.cs (1)
137
internal static bool IsMachine(IsolatedStorageScope scope) => ((scope & IsolatedStorageScope.
Machine
) != 0);
System\IO\IsolatedStorage\IsolatedStorage.cs (3)
175
case IsolatedStorageScope.
Machine
| IsolatedStorageScope.Assembly:
176
case IsolatedStorageScope.
Machine
| IsolatedStorageScope.Assembly | IsolatedStorageScope.Domain:
179
case IsolatedStorageScope.Application | IsolatedStorageScope.
Machine
:
System\IO\IsolatedStorage\IsolatedStorageFile.cs (4)
479
return GetStore(IsolatedStorageScope.Application | IsolatedStorageScope.
Machine
);
484
return GetStore(IsolatedStorageScope.Assembly | IsolatedStorageScope.
Machine
);
489
return GetStore(IsolatedStorageScope.Assembly | IsolatedStorageScope.Domain | IsolatedStorageScope.
Machine
);
673
(scope != IsolatedStorageScope.
Machine
))