Click or drag to resize
Stream Class
Provides a generic view of a sequence of bytes.
Inheritance Hierarchy

Namespace: CMS.IO
Assembly: CMS.IO (in CMS.IO.dll) Version: 9.0.0
Syntax
C#
public abstract class Stream : IDisposable

The Stream type exposes the following members.

Constructors
  NameDescription
Protected methodStream
Top
Properties
  NameDescription
Public propertyCanSeek
When overridden in a derived class, gets a value indicating whether the current stream supports seeking.
Public propertyLength
Gets the length in bytes of the stream.
Public propertyPosition
Gets or sets the position within the current stream.
Public propertySystemStream
Gets or sets system stream.
Top
Methods
  NameDescription
Public methodClose
Closes the current stream and releases any resources (such as sockets and file handles) associated with the current stream.
Public methodDispose
Releases all resources.
Public methodFlush
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 methodRead
Reads from stream.
Public methodSeek
Sets the position within the current stream to the specified value.
Public methodSetLength
Sets length to stream.
Public methodWrite
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 byte to stream.
Top
Operators
  NameDescription
Public operatorStatic member(Stream to BinaryData)
Implicit operator to convert CMS.IO stream to binary data
Top
See Also