5 instantiations of DeflateEncoder
System.IO.Compression (5)
System\IO\Compression\DeflateEncoder.cs (1)
336
using 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>
336
using
var
encoder = new DeflateEncoder(quality, windowLog);
System\IO\Compression\GZipEncoder.cs (2)
13
private readonly
DeflateEncoder
_deflateEncoder;
85
long maxCompressedLength =
DeflateEncoder
.GetMaxCompressedLength(inputLength);
System\IO\Compression\ZLibEncoder.cs (2)
13
private readonly
DeflateEncoder
_deflateEncoder;
84
return
DeflateEncoder
.GetMaxCompressedLength(inputLength);