1 instantiation of IsolatedStorageFile
System.IO.IsolatedStorage (1)
System\IO\IsolatedStorage\IsolatedStorageFile.cs (1)
494return new IsolatedStorageFile(scope);
23 references to IsolatedStorageFile
mscorlib (1)
src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
334[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.IO.IsolatedStorage.IsolatedStorageFile))]
netstandard (1)
netstandard.cs (1)
935[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.IO.IsolatedStorage.IsolatedStorageFile))]
System.IO.IsolatedStorage (21)
System\IO\IsolatedStorage\IsolatedStorageFile.cs (12)
456public static IsolatedStorageFile GetUserStoreForApplication() 461public static IsolatedStorageFile GetUserStoreForAssembly() 466public static IsolatedStorageFile GetUserStoreForDomain() 471public static IsolatedStorageFile GetUserStoreForSite() 477public static IsolatedStorageFile GetMachineStoreForApplication() 482public static IsolatedStorageFile GetMachineStoreForAssembly() 487public static IsolatedStorageFile GetMachineStoreForDomain() 492private static IsolatedStorageFile GetStore(IsolatedStorageScope scope) 515public static IsolatedStorageFile GetStore(IsolatedStorageScope scope, Type? applicationEvidenceType) 521public static IsolatedStorageFile GetStore(IsolatedStorageScope scope, object? applicationIdentity) 527public static IsolatedStorageFile GetStore(IsolatedStorageScope scope, Type? domainEvidenceType, Type? assemblyEvidenceType) 533public static IsolatedStorageFile GetStore(IsolatedStorageScope scope, object? domainIdentity, object? assemblyIdentity)
System\IO\IsolatedStorage\IsolatedStorageFileStream.cs (9)
17private readonly IsolatedStorageFile _isf; 26public IsolatedStorageFileStream(string path, FileMode mode, IsolatedStorageFile? isf) 36public IsolatedStorageFileStream(string path, FileMode mode, FileAccess access, IsolatedStorageFile? isf) 46public IsolatedStorageFileStream(string path, FileMode mode, FileAccess access, FileShare share, IsolatedStorageFile? isf) 56public IsolatedStorageFileStream(string path, FileMode mode, FileAccess access, FileShare share, int bufferSize, IsolatedStorageFile? isf) 79public IsolatedStorageFile StorageFile; 84private static InitializationData InitializeFileStream(string path, FileMode mode, FileAccess access, FileShare share, int bufferSize, IsolatedStorageFile? isf) 95isf = IsolatedStorageFile.GetUserStoreForDomain(); 145throw IsolatedStorageFile.GetIsolatedStorageException(SR.IsolatedStorage_Operation_ISFS, e);