Flush() public method

public Flush ( ) : void
return void
示例#1
0
 public override void Flush()
 {
     if (_disposed)
     {
         throw new ObjectDisposedException("ZlibStream");
     }
     _baseStream.Flush();
 }
示例#2
0
 /// <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();
 }