August 2003
Intermediate to advanced
928 pages
32h 1m
English
IsolatedStorageFileStream
This class is simply a System.IO.FileStream
implementation
for isolated storage.
Use it to create and modify isolated storage files.
public class IsolatedStorageFileStream : System.IO.FileStream { // Public Constructors public IsolatedStorageFileStream(stringpath, System.IO.FileModemode); public IsolatedStorageFileStream(stringpath, System.IO.FileModemode, System.IO.FileAccessaccess); public IsolatedStorageFileStream(stringpath, System.IO.FileModemode, System.IO.FileAccessaccess, System.IO.FileShareshare); public IsolatedStorageFileStream(stringpath, System.IO.FileModemode, System.IO.FileAccessaccess, System.IO.FileShareshare, intbufferSize); public IsolatedStorageFileStream(stringpath, System.IO.FileModemode, System.IO.FileAccessaccess, System.IO.FileShareshare, intbufferSize, IsolatedStorageFileisf); public IsolatedStorageFileStream(stringpath, System.IO.FileModemode, System.IO.FileAccessaccess, System.IO.FileShareshare, IsolatedStorageFileisf); public IsolatedStorageFileStream(stringpath, System.IO.FileModemode, System.IO.FileAccessaccess, IsolatedStorageFileisf); public IsolatedStorageFileStream(stringpath, System.IO.FileModemode, IsolatedStorageFileisf); // Public Instance Properties public override bool CanRead{get; } // overrides System.IO.FileStream public override bool CanSeek{get; } // overrides System.IO.FileStream public override bool CanWrite{get; } // overrides System.IO.FileStream public override ...