4 references to NoFlush
System.IO.Compression (4)
System\IO\Compression\DeflateDecoder.cs (1)
87
ZLibNative.ErrorCode errorCode = _state.Inflate(ZLibNative.FlushCode.
NoFlush
);
System\IO\Compression\DeflateEncoder.cs (1)
198
ZLibNative.FlushCode flushCode = isFinalBlock ? ZLibNative.FlushCode.Finish : ZLibNative.FlushCode.
NoFlush
;
System\IO\Compression\DeflateZLib\Deflater.cs (1)
98
ReadDeflateOutput(outputBuffer, ZFlushCode.
NoFlush
, out bytesRead);
System\IO\Compression\DeflateZLib\Inflater.cs (1)
129
if (ReadInflateOutput(bufPtr, length, ZLibNative.FlushCode.
NoFlush
, out bytesRead) == ZLibNative.ErrorCode.StreamEnd)