The following tables list the members exposed by the EncryptingStream type.

Name Description
Public method BeginRead(Byte[], Int32, Int32, AsyncCallback, Object) Begins an asynchronous read operation. (Consider using ReadAsync instead; see the Remarks section.) (inherited from Stream).
Public method BeginWrite(Byte[], Int32, Int32, AsyncCallback, Object) Begins an asynchronous write operation. (Consider using WriteAsync instead; see the Remarks section.) (inherited from Stream).
Public method 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 Stream).
Public method CopyTo(Stream, Int32) Reads the bytes from the current stream and writes them to another stream, using a specified buffer size. (inherited from Stream).
Public method CopyTo(Stream) Reads the bytes from the current stream and writes them to another stream. (inherited from Stream).
Public method CopyToAsync(Stream, Int32, CancellationToken) Asynchronously reads the bytes from the current stream and writes them to another stream, using a specified buffer size and cancellation token. (inherited from Stream).
Public method CopyToAsync(Stream) Asynchronously reads the bytes from the current stream and writes them to another stream. (inherited from Stream).
Public method CopyToAsync(Stream, Int32) Asynchronously reads the bytes from the current stream and writes them to another stream, using a specified buffer size. (inherited from Stream).
Public method CreateObjRef(Type) Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object. (inherited from MarshalByRefObject).
Protected method CreateWaitHandle Obsolete. Allocates a WaitHandle object. (inherited from Stream).
Public method Dispose Releases all resources used by the Stream. (System.IO.Stream).
Protected method Dispose(bool) Releases the unmanaged resources used by the Stream and optionally releases the managed resources.
Public method EndRead(IAsyncResult) Waits for the pending asynchronous read to complete. (Consider using ReadAsync instead; see the Remarks section.) (inherited from Stream).
Public method EndWrite(IAsyncResult) Ends an asynchronous write operation. (Consider using WriteAsync instead; see the Remarks section.) (inherited from Stream).
Public method Equals(Object) Determines whether the specified object is equal to the current object. (inherited from Object).
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (inherited from Object).
Public method Flush() When overridden in a derived class, clears all buffers for this stream and causes any buffered data to be written to the underlying device.
Public method FlushAsync(CancellationToken) Asynchronously clears all buffers for this stream, causes any buffered data to be written to the underlying device, and monitors cancellation requests. (inherited from Stream).
Public method FlushAsync Asynchronously clears all buffers for this stream and causes any buffered data to be written to the underlying device. (inherited from Stream).
Public method GetHashCode Serves as the default hash function. (inherited from Object).
Public method GetLifetimeService Retrieves the current lifetime service object that controls the lifetime policy for this instance. (inherited from MarshalByRefObject).
Public method GetType Gets the Type of the current instance. (inherited from Object).
Public method InitializeLifetimeService Obtains a lifetime service object to control the lifetime policy for this instance. (inherited from MarshalByRefObject).
Protected method MemberwiseClone Creates a shallow copy of the current Object. (inherited from Object).
Protected method MemberwiseClone(Boolean) Creates a shallow copy of the current MarshalByRefObject object. (inherited from MarshalByRefObject).
Protected method ObjectInvariant Obsolete. Provides support for a Contract. (inherited from Stream).
Public method Read(Byte[], Int32, Int32) 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. (System.IO.Stream).
Public method Read(byte[], int, int) 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.
Public method ReadAsync(Byte[], Int32, Int32, CancellationToken) Asynchronously reads a sequence of bytes from the current stream, advances the position within the stream by the number of bytes read, and monitors cancellation requests. (inherited from Stream).
Public method ReadAsync(Byte[], Int32, Int32) 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 Stream).
Public method 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.
Public method Seek(long, SeekOrigin) When overridden in a derived class, sets the position within the current stream.
Public method SetLength(long) When overridden in a derived class, sets the length of the current stream.
Public method ToString Returns a string that represents the current object. (inherited from Object).
Public method Write(Byte[], Int32, Int32) 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. (System.IO.Stream).
Public method Write(byte[], int, int) 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.
Public method WriteAsync(Byte[], Int32, Int32, CancellationToken) Asynchronously writes a sequence of bytes to the current stream, advances the current position within this stream by the number of bytes written, and monitors cancellation requests. (inherited from Stream).
Public method WriteAsync(Byte[], Int32, Int32) 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 Stream).
Public method WriteByte(byte) Writes a byte to the current position in the stream and advances the position within the stream by one byte.
Top