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();
 }
コード例 #3
0
 /// <summary>
 /// Flush the stream.
 /// </summary>
 public override void Flush()
 {
     if (_disposed) throw new ObjectDisposedException("GZipStream");
     _baseStream.Flush();
 }