Stream Class

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Provides a generic view of a sequence of bytes.

Inheritance Hierarchy

System. . :: . .Object
  System. . :: . .MarshalByRefObject
    System.IO..::..Stream
      Microsoft.SPOT.Hardware.UsbClient. . :: . .UsbStream
      Microsoft.SPOT.Net. . :: . .FtpResponseStream
      System.IO. . :: . .FileStream
      System.IO. . :: . .MemoryStream
      System.IO.Ports. . :: . .SerialPort
      System.Net.Sockets. . :: . .NetworkStream

Namespace:  System.IO
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
<SerializableAttribute> _
Public MustInherit Class Stream _
    Inherits MarshalByRefObject _
    Implements IDisposable
[SerializableAttribute]
public abstract class Stream : MarshalByRefObject, 
    IDisposable
[SerializableAttribute]
public ref class Stream abstract : public MarshalByRefObject, 
    IDisposable
[<AbstractClass>]
[<SerializableAttribute>]
type Stream =  
    class
        inherit MarshalByRefObject
        interface IDisposable
    end
public abstract class Stream extends MarshalByRefObject implements IDisposable

The Stream type exposes the following members.

Constructors

  Name Description
Protected method Stream Initializes a new instance of the Stream class.

Top

Properties

  Name Description
Public property CanRead When overridden in a derived class, gets a value indicating whether the current stream supports reading.
Public property CanSeek When overridden in a derived class, gets a value indicating whether the current stream supports seeking.
Public property CanTimeout Gets a value that determines whether the current stream can time out.
Public property CanWrite When overridden in a derived class, gets a value indicating whether the current stream supports writing.
Public property Length When overridden in a derived class, gets the length in bytes of the stream.
Public property Position When overridden in a derived class, gets or sets the position within the current stream.
Public property ReadTimeout Gets or sets a value, in milliseconds, that determines how long the stream will attempt to read before timing out.
Public property WriteTimeout Gets or sets a value, in miliseconds, that determines how long the stream will attempt to write before timing out.

Top

Methods

  Name Description
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.
Public method Dispose() () () () Releases all resources used by the Stream.
Protected method Dispose(Boolean) Releases the unmanaged resources used by the Stream and optionally releases the managed resources.
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Cleans up resources. (Overrides Object. . :: . .Finalize() () () ().)
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 GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method Read 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 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 When overridden in a derived class, sets the position within the current stream.
Public method SetLength 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 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 WriteByte Writes a byte to the current position in the stream and advances the position within the stream by one byte.

Top

Remarks

Streams involve three fundamental operations:

  • You can read from streams. Reading is the transfer of data from a stream into a data structure, such as an array of bytes.

  • You can write to streams. Writing is the transfer of data from a data structure into a stream.

  • Streams can support seeking. Seeking refers to querying and modifying the current position within a stream. Seek capability depends on the kind of backing store a stream has. For example, network streams have no unified concept of a current position, and therefore typically do not support seeking.

Stream is the abstract base class of all streams. A stream is an abstraction of a sequence of bytes, such as a file, an input/output device, an inter-process communication pipe, or a TCP/IP socket. The Stream class and its derived classes provide a generic view of these different types of input and output, and isolate the programmer from the specific details of the operating system and the underlying devices.

Depending on the underlying data source or repository, streams might support only some of these capabilities. You can query a stream for its capabilities by using the CanRead, CanWrite, and CanSeek properties of the Stream class.

The Read and Write methods read and write data in a variety of formats. For streams that support seeking, use the Seek and SetLength methods and the Position and Length properties to query and modify the current position and length of a stream.

Disposing a Stream object flushes any buffered data, and essentially calls the Flush method for you. Dispose also releases operating system resources such as file handles, network connections, or memory used for any internal buffering. The BufferedStream class provides the capability of wrapping a buffered stream around another stream in order to improve read and write performance.

If you need a stream with no backing store (also known as a bit bucket), use the Null field to retrieve an instance of a stream that is designed for this purpose.

Topic Location
How to: Write Text to a File .NET Framework: Programming Fundamentals
How to: Read Text from a File .NET Framework: Programming Fundamentals
How to: Write Text to a File .NET Framework: Programming Fundamentals
How to: Read Text from a File .NET Framework: Programming Fundamentals
How to: Write Text to a File .NET Framework: Programming Fundamentals
How to: Read Text from a File .NET Framework: Programming Fundamentals

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

System.IO Namespace