Lines Matching refs:Stream
15 /// Implements a compressed <see cref="Stream"/>, in GZip (.gz) format.
17 public class GZipStream : Stream, IDisposable
78 /// Returns true of this stream can be read from, false otherwise
143 /// Attempts to read a number of bytes from the stream.
152 /// <exception cref="NotSupportedException">If this stream is not readable.</exception>
153 /// <exception cref="ObjectDisposedException">If this stream has been disposed.</exception>
178 /// Attempts to read a single byte from the stream.
189 /// Writes a number of bytes to the stream
197 /// <exception cref="NotSupportedException">If this stream is not writeable.</exception>
198 /// <exception cref="ObjectDisposedException">If this stream has been disposed.</exception>
221 /// Writes a single byte to the stream
223 /// <param name="value">The byte to add to the stream.</param>
224 /// <exception cref="NotSupportedException">If this stream is not writeable.</exception>
225 /// <exception cref="ObjectDisposedException">If this stream has been disposed.</exception>
288 /// Gets the size of the stream. Not supported.