1 type derived from IsolatedStorageFileStream
WindowsBase (1)
Shared\MS\Internal\IO\Packaging\PackagingUtilities.cs (1)
589private class SafeIsolatedStorageFileStream : IsolatedStorageFileStream
6 instantiations of IsolatedStorageFileStream
mscorlib (4)
system\io\isolatedstorage\isolatedstoragefile.cs (4)
1260return new IsolatedStorageFileStream(path, mode, this); 1266return new IsolatedStorageFileStream(path, mode, access, this); 1271return new IsolatedStorageFileStream(path, mode, access, share, this); 1276return new IsolatedStorageFileStream(path, FileMode.Create, FileAccess.ReadWrite, FileShare.None, this);
System.Web.Extensions (2)
ClientServices\Providers\ClientData.cs (2)
172using(IsolatedStorageFileStream fs = new IsolatedStorageFileStream(FileName, FileMode.Create, f)) { 216using(IsolatedStorageFileStream fs = new IsolatedStorageFileStream(fileName, FileMode.Open, f)) {
6 references to IsolatedStorageFileStream
mscorlib (4)
system\io\isolatedstorage\isolatedstoragefile.cs (4)
1259public IsolatedStorageFileStream OpenFile(string path, FileMode mode) { 1265public IsolatedStorageFileStream OpenFile(string path, FileMode mode, FileAccess access) { 1270public IsolatedStorageFileStream OpenFile(string path, FileMode mode, FileAccess access, FileShare share) { 1275public IsolatedStorageFileStream CreateFile(string path) {
System.Web.Extensions (2)
ClientServices\Providers\ClientData.cs (2)
172using(IsolatedStorageFileStream fs = new IsolatedStorageFileStream(FileName, FileMode.Create, f)) { 216using(IsolatedStorageFileStream fs = new IsolatedStorageFileStream(fileName, FileMode.Open, f)) {