System.IO.IsolatedStorage.Helper.IsMachine C# (CSharp) Method

IsMachine() static private method

static private IsMachine ( IsolatedStorageScope scope ) : bool
scope IsolatedStorageScope
return bool
        internal static bool IsMachine(IsolatedStorageScope scope) => ((scope & IsolatedStorageScope.Machine) != 0);
        internal static bool IsAssembly(IsolatedStorageScope scope) => ((scope & IsolatedStorageScope.Assembly) != 0);