示例#1
0
 public override void Flush()
 {
     if (_bufferIndex == 0)
     {
         return;
     }
     _stream.Write(_buffer, 0, _bufferIndex);
     //here we want to close the gzip blockB
     _stream.CloseBlock();
     _bufferIndex = 0;
 }