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