public override void Flush() { if (_disposed) { throw new ObjectDisposedException("ZlibStream"); } _baseStream.Flush(); }
/// <summary> /// Flush the stream. /// </summary> public override void Flush() { _baseStream.Flush(); }
/// <summary> /// Flush the stream. /// </summary> public override void Flush() { if (_disposed) throw new ObjectDisposedException("GZipStream"); _baseStream.Flush(); }