System.IO.IsolatedStorage.IsolatedStorageFileStream
namespace System.IO.IsolatedStorage
{
public class IsolatedStorageFileStream : FileStream
{
public IsolatedStorageFileStream(string path, FileMode mode);
public IsolatedStorageFileStream(string path, FileMode mode, FileAccess access);
public IsolatedStorageFileStream(string path, FileMode mode, FileAccess access, FileShare share);
public IsolatedStorageFileStream(string path, FileMode mode, FileAccess access, FileShare share, int bufferSize);
public IsolatedStorageFileStream(string path, FileMode mode, FileAccess access, FileShare share, int bufferSize, IsolatedStorageFile isf);
public IsolatedStorageFileStream(string path, FileMode mode, FileAccess access, FileShare share, IsolatedStorageFile isf);
public IsolatedStorageFileStream(string path, FileMode mode, FileAccess access, IsolatedStorageFile isf);
public IsolatedStorageFileStream(string path, FileMode mode, IsolatedStorageFile isf);
}
}