Click or drag to resize
Stream Class
Provides a generic view of a sequence of bytes.
Inheritance Hierarchy
SystemObject
  SystemMarshalByRefObject
    System.IOStream
      System.IOFileStream
      System.IOMemoryStream

Namespace: System.IO
Assembly: mscorlib (in mscorlib.dll) Version: 4.0.0.0
Syntax
C#
[SerializableAttribute]
public abstract class Stream : MarshalByRefObject, 
	IDisposable

The Stream type exposes the following members.

Methods
  NameDescription
Public methodClose
Closes the current stream and releases any resources (such as sockets and file handles) associated with the current stream.
Public methodCopyTo(Stream)
Reads the bytes from the current stream and writes them to the destination stream.
Public methodCopyTo(Stream, Int32)
Reads all the bytes from the current stream and writes them to a destination stream, using a specified buffer size.
Public methodDispose
Releases all resources used by the Stream.
Protected methodDispose(Boolean)
Releases the unmanaged resources used by the Stream and optionally releases the managed resources.
Public methodEquals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodRead
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 methodReadByte
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 methodSeek
When overridden in a derived class, sets the position within the current stream.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodWrite
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 methodWriteByte
Writes a byte to the current position in the stream and advances the position within the stream by one byte.
Top
Fields
  NameDescription
Public fieldStatic memberNull
A Stream with no backing store.
Top
Properties
  NameDescription
Public propertyCanRead
When overridden in a derived class, gets a value indicating whether the current stream supports reading.
Public propertyCanSeek
When overridden in a derived class, gets a value indicating whether the current stream supports seeking.
Public propertyLength
When overridden in a derived class, gets the length in bytes of the stream.
Public propertyPosition
When overridden in a derived class, gets or sets the position within the current stream.
Top
See Also