10 references to GetStore
System.IO.IsolatedStorage (10)
System\IO\IsolatedStorage\IsolatedStorageFile.cs (10)
458return GetStore(IsolatedStorageScope.Application | IsolatedStorageScope.User); 463return GetStore(IsolatedStorageScope.Assembly | IsolatedStorageScope.User); 468return GetStore(IsolatedStorageScope.Assembly | IsolatedStorageScope.Domain | IsolatedStorageScope.User); 479return GetStore(IsolatedStorageScope.Application | IsolatedStorageScope.Machine); 484return GetStore(IsolatedStorageScope.Assembly | IsolatedStorageScope.Machine); 489return GetStore(IsolatedStorageScope.Assembly | IsolatedStorageScope.Domain | IsolatedStorageScope.Machine); 518return (applicationEvidenceType == null) ? GetStore(scope) : throw new PlatformNotSupportedException(SR.PlatformNotSupported_CAS); // https://github.com/dotnet/runtime/issues/18208 524return (applicationIdentity == null) ? GetStore(scope) : throw new PlatformNotSupportedException(SR.PlatformNotSupported_CAS); // https://github.com/dotnet/runtime/issues/18208 530return (domainEvidenceType == null && assemblyEvidenceType == null) ? GetStore(scope) : throw new PlatformNotSupportedException(SR.PlatformNotSupported_CAS); // https://github.com/dotnet/runtime/issues/18208 536return (domainIdentity == null && assemblyIdentity == null) ? GetStore(scope) : throw new PlatformNotSupportedException(SR.PlatformNotSupported_CAS); // https://github.com/dotnet/runtime/issues/18208