Crisis.Ionic.Zlib.ZlibBaseStream.Flush C# (CSharp) Method

Flush() public method

public Flush ( ) : void
return void
        public override void Flush()
        {
            _stream.Flush();
        }

Usage Example

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