5 instantiations of DeflateEncoder
System.IO.Compression (5)
System\IO\Compression\DeflateEncoder.cs (1)
336using var encoder = new DeflateEncoder(quality, windowLog);
System\IO\Compression\GZipEncoder.cs (2)
44_deflateEncoder = new DeflateEncoder(options, CompressionFormat.GZip); 56_deflateEncoder = new DeflateEncoder(quality, windowLog, CompressionFormat.GZip);
System\IO\Compression\ZLibEncoder.cs (2)
44_deflateEncoder = new DeflateEncoder(options, CompressionFormat.ZLib); 56_deflateEncoder = new DeflateEncoder(quality, windowLog, CompressionFormat.ZLib);
13 references to DeflateEncoder
System.IO.Compression (13)
System\IO\Compression\DeflateEncoder.cs (9)
20/// Initializes a new instance of the <see cref="DeflateEncoder"/> class using the default quality. 22/// <exception cref="IOException">Failed to create the <see cref="DeflateEncoder"/> instance.</exception> 29/// Initializes a new instance of the <see cref="DeflateEncoder"/> class using the specified quality. 33/// <exception cref="IOException">Failed to create the <see cref="DeflateEncoder"/> instance.</exception> 40/// Initializes a new instance of the <see cref="DeflateEncoder"/> class using the specified options. 44/// <exception cref="IOException">Failed to create the <see cref="DeflateEncoder"/> instance.</exception> 51/// Initializes a new instance of the <see cref="DeflateEncoder"/> class using the specified quality and window size. 56/// <exception cref="IOException">Failed to create the <see cref="DeflateEncoder"/> instance.</exception> 336using var encoder = new DeflateEncoder(quality, windowLog);
System\IO\Compression\GZipEncoder.cs (2)
13private readonly DeflateEncoder _deflateEncoder; 85long maxCompressedLength = DeflateEncoder.GetMaxCompressedLength(inputLength);
System\IO\Compression\ZLibEncoder.cs (2)
13private readonly DeflateEncoder _deflateEncoder; 84return DeflateEncoder.GetMaxCompressedLength(inputLength);