Method | Description | |
---|---|---|
BeginRead ( byte buffer, int offset, int numBytes, AsyncCallback userCallback, object stateObject ) : IAsyncResult | ||
BeginWrite ( byte buffer, int offset, int numBytes, AsyncCallback userCallback, object stateObject ) : IAsyncResult | ||
Dispose ( ) : void | ||
EndRead ( IAsyncResult asyncResult ) : int | ||
EndWrite ( IAsyncResult asyncResult ) : void | ||
Flush ( ) : void | ||
Flush ( bool flushToDisk ) : void | ||
MockIsolatedStorageFileStream ( bool canRead, bool canWrite, bool canSeek, long length ) : System | ||
Read ( byte buffer, int offset, int count ) : int | ||
ReadByte ( ) : int | ||
Seek ( long offset, SeekOrigin origin ) : long | ||
SetLength ( long value ) : void | ||
Write ( byte buffer, int offset, int count ) : void | ||
WriteByte ( byte value ) : void |
public BeginRead ( byte buffer, int offset, int numBytes, AsyncCallback userCallback, object stateObject ) : IAsyncResult | ||
buffer | byte | |
offset | int | |
numBytes | int | |
userCallback | AsyncCallback | |
stateObject | object | |
return | IAsyncResult |
public BeginWrite ( byte buffer, int offset, int numBytes, AsyncCallback userCallback, object stateObject ) : IAsyncResult | ||
buffer | byte | |
offset | int | |
numBytes | int | |
userCallback | AsyncCallback | |
stateObject | object | |
return | IAsyncResult |
public EndRead ( IAsyncResult asyncResult ) : int | ||
asyncResult | IAsyncResult | |
return | int |
public EndWrite ( IAsyncResult asyncResult ) : void | ||
asyncResult | IAsyncResult | |
return | void |
public MockIsolatedStorageFileStream ( bool canRead, bool canWrite, bool canSeek, long length ) : System | ||
canRead | bool | |
canWrite | bool | |
canSeek | bool | |
length | long | |
return | System |
public Read ( byte buffer, int offset, int count ) : int | ||
buffer | byte | |
offset | int | |
count | int | |
return | int |
public Seek ( long offset, SeekOrigin origin ) : long | ||
offset | long | |
origin | SeekOrigin | |
return | long |
public Write ( byte buffer, int offset, int count ) : void | ||
buffer | byte | |
offset | int | |
count | int | |
return | void |