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