C# Class System.IO.IsolatedStorage.IsolatedStorageFileStream

Inheritance: System.IO.FileStream
Datei anzeigen Open project: dotnet/corefx Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
BeginRead ( byte buffer, int offset, int numBytes, System userCallback, object stateObject ) : System.IAsyncResult
BeginWrite ( byte buffer, int offset, int numBytes, System userCallback, object stateObject ) : System.IAsyncResult
EndRead ( System asyncResult ) : int
EndWrite ( System asyncResult ) : void
Flush ( ) : void
Flush ( bool flushToDisk ) : void
IsolatedStorageFileStream ( string path, System mode )
IsolatedStorageFileStream ( string path, System mode, System access )
IsolatedStorageFileStream ( string path, System mode, System access, System share )
IsolatedStorageFileStream ( string path, System mode, System access, System share, System isf )
IsolatedStorageFileStream ( string path, System mode, System access, System share, int bufferSize )
IsolatedStorageFileStream ( string path, System mode, System access, System share, int bufferSize, System isf )
Lock ( long position, long length ) : void
Read ( byte buffer, int offset, int count ) : int
ReadByte ( ) : int
Seek ( long offset, System origin ) : long
SetLength ( long value ) : void
Unlock ( long position, long length ) : void
Write ( byte buffer, int offset, int count ) : void
WriteByte ( byte value ) : void

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Method Details

BeginRead() public method

public BeginRead ( byte buffer, int offset, int numBytes, System userCallback, object stateObject ) : System.IAsyncResult
buffer byte
offset int
numBytes int
userCallback System
stateObject object
return System.IAsyncResult

BeginWrite() public method

public BeginWrite ( byte buffer, int offset, int numBytes, System userCallback, object stateObject ) : System.IAsyncResult
buffer byte
offset int
numBytes int
userCallback System
stateObject object
return System.IAsyncResult

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

EndRead() public method

public EndRead ( System asyncResult ) : int
asyncResult System
return int

EndWrite() public method

public EndWrite ( System asyncResult ) : void
asyncResult System
return void

Flush() public method

public Flush ( ) : void
return void

Flush() public method

public Flush ( bool flushToDisk ) : void
flushToDisk bool
return void

IsolatedStorageFileStream() public method

public IsolatedStorageFileStream ( string path, System mode )
path string
mode System

IsolatedStorageFileStream() public method

public IsolatedStorageFileStream ( string path, System mode, System access )
path string
mode System
access System

IsolatedStorageFileStream() public method

public IsolatedStorageFileStream ( string path, System mode, System access, System share )
path string
mode System
access System
share System

IsolatedStorageFileStream() public method

public IsolatedStorageFileStream ( string path, System mode, System access, System share, System isf )
path string
mode System
access System
share System
isf System

IsolatedStorageFileStream() public method

public IsolatedStorageFileStream ( string path, System mode, System access, System share, int bufferSize )
path string
mode System
access System
share System
bufferSize int

IsolatedStorageFileStream() public method

public IsolatedStorageFileStream ( string path, System mode, System access, System share, int bufferSize, System isf )
path string
mode System
access System
share System
bufferSize int
isf System

Lock() public method

public Lock ( long position, long length ) : void
position long
length long
return void

Read() public method

public Read ( byte buffer, int offset, int count ) : int
buffer byte
offset int
count int
return int

ReadByte() public method

public ReadByte ( ) : int
return int

Seek() public method

public Seek ( long offset, System origin ) : long
offset long
origin System
return long

SetLength() public method

public SetLength ( long value ) : void
value long
return void

Unlock() public method

public Unlock ( long position, long length ) : void
position long
length long
return void

Write() public method

public Write ( byte buffer, int offset, int count ) : void
buffer byte
offset int
count int
return void

WriteByte() public method

public WriteByte ( byte value ) : void
value byte
return void