| BeginRead |
Begins an Asynchronous read operation (currently is only synchronous)
|
| BeginWrite |
Begins an asynchronous buffer write. Currently the FileStream class does not
support asynchronous buffer writing.
|
| CloseStream |
Closes the current stream, flushing any data that may need to be written to the stream.
|
| EndRead |
Signifies the end of an asynchronous read from the stream.
|
| EndWrite |
Signifies the end of an asynchronous write to the stream.
|
| Equals |
Returns a boolean indicating if the value and this object
instance are the same instance.
|
| Flush |
Writes any data that may be in the write buffer to the underlying stream.
|
| GetHashCode |
Returns a pseudo-unique number identifying this instance.
|
| LockStream |
Locks a portion of a file to prevent write access for other processes.
|
| ReadBlock |
Reads a specified number of bytes into the given array.
|
| ReadByte |
Returns the next byte in the file stream starting at the current file position.
|
| SeekPosition |
Moves the file pointer to a new position relative to a specified reference.
|
| SetLength |
Sets the length of the stream to the specified length.
|
| ToString |
Returns a string representation of this object instance.
|
| UnlockStream |
Unlocks a portion of the file to allow write access to the stream for other processes.
|
| WriteBlock |
Writes an array of bytes to the stream.
|
| WriteByte |
Writes a single byte to the stream.
|