Namespace Eco.Core.Utils.Streams
Classes
ConcatStream
Allow to concat two streams together. When the first stream fully read it will continue to read from the second stream.
ReadOnlyForkStream
Read-only stream which "forks" data which was read to Eco.Core.Utils.Streams.ReadOnlyForkStream.fork stream. "Fork" means it will have copy of all data which was read from System.IO.Stream. It doesn't take ownership of Eco.Core.Utils.Streams.ReadOnlyForkStream.fork and you should Dispose it on you own.
ReadOnlyStream
Base class for read-only stream wrappers.
ReadOnlyWrapperStream
Base class for read-only stream wrappers.
StreamWithLength
Adds Length and Position (get) support to Stream.
WrapperStream
Can be used as base class for other stream wrappers.