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