| BeginRead |
Begins an Asynchronous read operation (currently is only synchronous)
|
| BeginWrite |
Begins an asynchronous buffer write. Currently the CryptoStream class does not
support asynchronous buffer writing.
|
| CloseStream |
Closes the underlying 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 |
Flushes the buffers of the underlying Stream.
|
| FlushFinalBlock |
Flushes the remaining data to the underlying stream.
|
| GetHashCode |
Returns a psuedo-unique number used to help identify this
object in memory. The current method is to return the value
obtained from ObjPtr. If a different method needs to be impelmented
then change the method here in this function. An override might be necessary if the hashcode should be
derived from a value contained within the class.
|
| ReadBlock |
Reads a requested amount of data from the stream.
|
| ReadByte |
Reads a single byte from the Stream.
|
| SeekPosition |
Seeks a new position within the Stream.
|
| SetLength |
Sets the length of the current Stream.
|
| ToString |
Returns a string representation of this object instance.
The default method simply returns the application name
and class name in which this class resides. A Person class may return the persons name instead.
|
| WriteBlock |
Writes an array of bytes to the Stream.
|
| WriteByte |
Writes a single byte to the Stream.
|