Skip to content

PeekableStream Class

Definition

A read-only Stream wrapper that supports peeking at the next byte without consuming it.

public sealed class PeekableStream : Stream, IDisposable, IAsyncDisposable

View source

Constructors

Name Description
PeekableStream(Stream, Boolean) Initializes a new instance of the PeekableStream class.

Properties

Name Description
CanRead When overridden in a derived class, gets a value indicating whether the current stream supports reading.
CanSeek When overridden in a derived class, gets a value indicating whether the current stream supports seeking.
CanWrite When overridden in a derived class, gets a value indicating whether the current stream supports writing.
EndOfStream Gets a value indicating whether the end of the stream has been reached.
Length When overridden in a derived class, gets the length in bytes of the stream.
Position When overridden in a derived class, gets or sets the position within the current stream.

Methods

Name Description
Dispose(Boolean) Releases the unmanaged resources used by the Stream and optionally releases the managed resources.
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.
Peek() Reads the next byte from the stream without consuming it. Subsequent calls to Peek() will return the same value until the byte is consumed by a read operation, or the position is changed.
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.
Seek(Int64, SeekOrigin) When overridden in a derived class, sets the position within the current stream.
SetLength(Int64) When overridden in a derived class, sets the length of the current stream.
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.