March 2002
Intermediate to advanced
864 pages
31h 8m
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 method IsolatedStorageFileStream(string path, System.IO.FileMode mode); public method IsolatedStorageFileStream(string path, System.IO.FileMode mode, System.IO.FileAccess access); public method IsolatedStorageFileStream(string path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share); public method IsolatedStorageFileStream(string path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, int bufferSize); public method IsolatedStorageFileStream(string path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, int bufferSize, IsolatedStorageFile isf); public method IsolatedStorageFileStream(string path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, IsolatedStorageFile isf); public method IsolatedStorageFileStream(string path, System.IO.FileMode mode, System.IO.FileAccess access, IsolatedStorageFile isf); public method IsolatedStorageFileStream(string path, System.IO.FileMode mode, IsolatedStorageFile isf); // Public Instance Properties public override field bool CanRead{get; } // overrides System.IO.FileStream public override field bool CanSeek{get; } // overrides System.IO.FileStream public override ...