CryptoStream Methods

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Include Protected Members
Include Inherited Members

Include Silverlight Members
Include Silverlight for Windows Phone Members
Include XNA Framework Members

The CryptoStream type exposes the following members.

Methods

  Name Description
Public methodSupported by Silverlight for Windows Phone BeginRead Begins an asynchronous read operation. (Inherited from Stream.)
Public methodSupported by Silverlight for Windows Phone BeginWrite Begins an asynchronous write operation. (Inherited from Stream.)
Public methodSupported by Silverlight for Windows Phone Clear Releases all resources used by the CryptoStream.
Public methodSupported by Silverlight for Windows Phone Close Closes the current stream and releases any resources (such as sockets and file handles) associated with the current stream. (Inherited from Stream.)
Public methodSupported by Silverlight for Windows Phone CopyTo(Stream) Reads all the bytes from the current stream and writes them to the destination stream. (Inherited from Stream.)
Public methodSupported by Silverlight for Windows Phone CopyTo(Stream, Int32) Reads all the bytes from the current stream and writes them to a destination stream, using a specified buffer size. (Inherited from Stream.)
Public methodSupported by Silverlight for Windows Phone Dispose() Releases all resources used by the Stream. (Inherited from Stream.)
Protected methodSupported by Silverlight for Windows Phone Dispose(Boolean) Releases the unmanaged resources used by the CryptoStream and optionally releases the managed resources. (Overrides Stream.Dispose(Boolean).)
Public methodSupported by Silverlight for Windows Phone EndRead Waits for the pending asynchronous read to complete. (Inherited from Stream.)
Public methodSupported by Silverlight for Windows Phone EndWrite Ends an asynchronous write operation. (Inherited from Stream.)
Public methodSupported by Silverlight for Windows Phone Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected methodSupported by Silverlight for Windows Phone Finalize Allows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.)
Public methodSupported by Silverlight for Windows Phone Flush Clears all buffers for this stream and causes any buffered data to be written to the underlying device. (Overrides Stream.Flush().)
Public methodSupported by Silverlight for Windows Phone FlushFinalBlock Updates the underlying data source or repository with the current state of the buffer, and then clears the buffer.
Public methodSupported by Silverlight for Windows Phone GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public methodSupported by Silverlight for Windows Phone GetType Gets the Type of the current instance. (Inherited from Object.)
Protected methodSupported by Silverlight for Windows Phone MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public methodSupported by Silverlight for Windows Phone Read Reads a sequence of bytes from the current CryptoStream and advances the position within the stream by the number of bytes read. (Overrides Stream.Read(array<Byte[], Int32, Int32).)
Public methodSupported by Silverlight for Windows Phone 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 Stream.)
Public methodSupported by Silverlight for Windows Phone Seek Throws a NotSupportedException in all cases. (Overrides Stream.Seek(Int64, SeekOrigin).)
Public methodSupported by Silverlight for Windows Phone SetLength Throws a NotSupportedException in all cases. (Overrides Stream.SetLength(Int64).)
Public methodSupported by Silverlight for Windows Phone ToString Returns a string that represents the current object. (Inherited from Object.)
Public methodSupported by Silverlight for Windows Phone Write Writes a sequence of bytes to the current CryptoStream and advances the current position within this stream by the number of bytes written. (Overrides Stream.Write(array<Byte[], Int32, Int32).)
Public methodSupported by Silverlight for Windows Phone WriteByte Writes a byte to the current position in the stream and advances the position within the stream by one byte. (Inherited from Stream.)

Top