- Declared in: RT.KitchenSink.Streams.PeekableStream
- Overrides: Stream.Write(byte[], int, int)
Declaration
public override void Write(
byte[] buffer,
int offset,
int count
)
Summary
Writes data to the underlying stream. See Remarks for notes concerning seekable underlying streams.
If the underlying stream is not seekable, writes are assumed to be separate to reads and thus peeks, so
the peek streams aren't touched.
Remarks
Notes for seekable underlying streams:
The write will occur at the current position regardless of how much the peek streams have peeked.
All peek streams will be invalidated.