BlowfishStream Class Members
In This Topic
The following tables list the members exposed by BlowfishStream.
Public Properties
| Name | Description |
 | CanRead | Overridden. When overridden in a derived class, gets a value indicating whether the current stream supports reading.
Returns true if the stream support reads.
|
 | CanSeek | Overridden. When overridden in a derived class, gets a value indicating whether the current stream supports seeking.
Returns true is the stream supports seeks.
|
 | CanTimeout | Gets a value that determines whether the current stream can time out. (Inherited from System.IO.Stream) |
 | CanWrite | Overridden. When overridden in a derived class, gets a value indicating whether the current stream supports writing.
Returns true if the stream supports writes.
|
 | Length | Overridden. When overridden in a derived class, gets the length in bytes of the stream.
Returns the length of the stream.
|
 | Position | Overridden. When overridden in a derived class, gets or sets the position within the current stream.
Gets or Sets the posistion of the stream.
|
 | ReadTimeout | Gets or sets a value, in miliseconds, that determines how long the stream will attempt to read before timing out. (Inherited from System.IO.Stream) |
 | WriteTimeout | Gets or sets a value, in miliseconds, that determines how long the stream will attempt to write before timing out. (Inherited from System.IO.Stream) |
Top
Public Methods
| Name | Description |
 | BeginRead | Overridden. Begins an asynchronous read operation. (Consider using System.IO.Stream.ReadAsync(System.Byte[],System.Int32,System.Int32) instead.) |
 | BeginWrite | Overridden. Begins an asynchronous write operation. (Consider using System.IO.Stream.WriteAsync(System.Byte[],System.Int32,System.Int32) instead.) |
 | Close | Closes the current stream and releases any resources (such as sockets and file handles) associated with the current stream. Instead of calling this method, ensure that the stream is properly disposed. (Inherited from System.IO.Stream) |
 | CopyTo | Overloaded. Reads the bytes from the current stream and writes them to another stream. (Inherited from System.IO.Stream) |
 | CopyToAsync | Overloaded. Asynchronously reads the bytes from the current stream and writes them to another stream. (Inherited from System.IO.Stream) |
 | CreateObjRef | Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object. (Inherited from System.MarshalByRefObject) |
 | Dispose | Releases all resources used by the System.IO.Stream. (Inherited from System.IO.Stream) |
 | EndRead | Overridden. Waits for the pending asynchronous read to complete. (Consider using System.IO.Stream.ReadAsync(System.Byte[],System.Int32,System.Int32) instead.) |
 | EndWrite | Ends an asynchronous write operation. (Consider using System.IO.Stream.WriteAsync(System.Byte[],System.Int32,System.Int32) instead.) (Inherited from System.IO.Stream) |
 | Flush | Overridden. When overridden in a derived class, clears all buffers for this stream and causes any buffered data to be written to the underlying device.
Flushes the stream.
|
 | FlushAsync | Overloaded. Asynchronously clears all buffers for this stream and causes any buffered data to be written to the underlying device. (Inherited from System.IO.Stream) |
 | GetLifetimeService | Retrieves the current lifetime service object that controls the lifetime policy for this instance. (Inherited from System.MarshalByRefObject) |
 | InitializeLifetimeService | Obtains a lifetime service object to control the lifetime policy for this instance. (Inherited from System.MarshalByRefObject) |
 | Read | Overridden. When overridden in a derived class, reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.
Read data from the stream and encrypt it.
|
 | ReadAsync | Overloaded. Asynchronously reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read. (Inherited from System.IO.Stream) |
 | ReadByte | Reads a byte from the stream and advances the position within the stream by one byte, or returns -1 if at the end of the stream. (Inherited from System.IO.Stream) |
 | Seek | Overridden. When overridden in a derived class, sets the position within the current stream.
Move the current stream posistion to the specified location.
|
 | SetLength | Overridden. When overridden in a derived class, sets the length of the current stream.
Set the stream length.
|
 | Write | Overridden. When overridden in a derived class, writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written.
Write data to the stream after decrypting it.
|
 | WriteAsync | Overloaded. Asynchronously writes a sequence of bytes to the current stream and advances the current position within this stream by the number of bytes written. (Inherited from System.IO.Stream) |
 | WriteByte | Writes a byte to the current position in the stream and advances the position within the stream by one byte. (Inherited from System.IO.Stream) |
Top
See Also