48 references to SR
System.IO.IsolatedStorage (48)
System\IO\IsolatedStorage\Helper.cs (1)
131throw new IsolatedStorageException(SR.IsolatedStorage_Init);
System\IO\IsolatedStorage\Helper.NonMobile.cs (1)
40throw new IsolatedStorageException(SR.IsolatedStorage_Init);
System\IO\IsolatedStorage\IsolatedStorage.cs (13)
26throw new InvalidOperationException(SR.IsolatedStorage_ApplicationUndefined); 37throw new InvalidOperationException(SR.IsolatedStorage_AssemblyUndefined); 48throw new InvalidOperationException(SR.IsolatedStorage_AssemblyUndefined); 58throw new InvalidOperationException(SR.IsolatedStorage_CurrentSizeUndefined); 66throw new InvalidOperationException(SR.Format(SR.IsolatedStorage_QuotaIsUndefined, nameof(UsedSize))); 74throw new InvalidOperationException(SR.Format(SR.IsolatedStorage_QuotaIsUndefined, nameof(AvailableFreeSpace))); 87throw new InvalidOperationException(SR.Format(SR.IsolatedStorage_QuotaIsUndefined, nameof(MaximumSize))); 98throw new InvalidOperationException(SR.Format(SR.IsolatedStorage_QuotaIsUndefined, nameof(Quota))); 182throw new ArgumentException(SR.IsolatedStorage_Scope_Invalid);
System\IO\IsolatedStorage\IsolatedStorageException.cs (3)
21: base(SR.IsolatedStorage_Exception) 27: base(message ?? SR.IsolatedStorage_Exception) 33: base(message ?? SR.IsolatedStorage_Exception, inner)
System\IO\IsolatedStorage\IsolatedStorageFile.cs (25)
87throw GetIsolatedStorageException(SR.IsolatedStorage_DeleteFile, e); 140throw GetIsolatedStorageException(SR.IsolatedStorage_CreateDirectory, e); 157throw GetIsolatedStorageException(SR.IsolatedStorage_DeleteDirectory, e); 181throw GetIsolatedStorageException(SR.IsolatedStorage_Operation, e); 205throw GetIsolatedStorageException(SR.IsolatedStorage_Operation, e); 307throw new FileNotFoundException(SR.Format(SR.PathNotFound_Path, sourceFileName)); 315throw GetIsolatedStorageException(SR.IsolatedStorage_Operation, e); 335throw new FileNotFoundException(SR.Format(SR.PathNotFound_Path, sourceFileName)); 343throw GetIsolatedStorageException(SR.IsolatedStorage_Operation, e); 363throw new DirectoryNotFoundException(SR.Format(SR.PathNotFound_Path, sourceDirectoryName)); 371throw GetIsolatedStorageException(SR.IsolatedStorage_Operation, e); 474throw new NotSupportedException(SR.IsolatedStorage_NotValidOnDesktop); 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 563throw new ObjectDisposedException(null, SR.IsolatedStorage_StoreNotOpen); 566throw new InvalidOperationException(SR.IsolatedStorage_StoreNotOpen); 603throw new IsolatedStorageException(SR.IsolatedStorage_DeleteDirectories); 658throw new IsolatedStorageException(SR.IsolatedStorage_DeleteDirectories); 675throw new ArgumentException(SR.IsolatedStorage_Scope_U_R_M); 690throw new IsolatedStorageException(SR.IsolatedStorage_DeleteDirectories);
System\IO\IsolatedStorage\IsolatedStorageFileStream.cs (5)
90SR.IsolatedStorage_Path); 100throw new ObjectDisposedException(null, SR.IsolatedStorage_StoreNotOpen); 113throw new ArgumentException(SR.IsolatedStorage_FileOpenMode); 145throw IsolatedStorageFile.GetIsolatedStorageException(SR.IsolatedStorage_Operation_ISFS, e); 345throw new IsolatedStorageException(SR.IsolatedStorage_Operation_ISFS);