4 instantiations of IsolatedStorageFileStream
System.IO.IsolatedStorage (4)
System\IO\IsolatedStorage\IsolatedStorageFile.cs (4)
214return new IsolatedStorageFileStream(path, mode, this); 220return new IsolatedStorageFileStream(path, mode, access, this); 226return new IsolatedStorageFileStream(path, mode, access, share, this); 232return new IsolatedStorageFileStream(path, FileMode.Create, FileAccess.ReadWrite, FileShare.None, this);
7 references to IsolatedStorageFileStream
mscorlib (1)
src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
335[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.IO.IsolatedStorage.IsolatedStorageFileStream))]
netstandard (1)
netstandard.cs (1)
936[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.IO.IsolatedStorage.IsolatedStorageFileStream))]
System.IO.IsolatedStorage (5)
System\IO\IsolatedStorage\IsolatedStorageFile.cs (4)
211public IsolatedStorageFileStream OpenFile(string path, FileMode mode) 217public IsolatedStorageFileStream OpenFile(string path, FileMode mode, FileAccess access) 223public IsolatedStorageFileStream OpenFile(string path, FileMode mode, FileAccess access, FileShare share) 229public IsolatedStorageFileStream CreateFile(string path)
System\IO\IsolatedStorage\IsolatedStorageFileStream.cs (1)
221GetType() != typeof(IsolatedStorageFileStream) ? base.DisposeAsync() :