3 instantiations of ZstandardDecoder
System.IO.Compression (3)
System\IO\Compression\Zstandard\ZstandardStream.cs (2)
75
_decoder = new
ZstandardDecoder
();
107
_decoder = new
ZstandardDecoder
(dictionary);
System\IO\Compression\Zstandard\ZstandardStream.Decompress.cs (1)
53
_decoder = new
ZstandardDecoder
(decompressionOptions);
14 references to ZstandardDecoder
System.IO.Compression (14)
System\IO\Compression\Zstandard\ZstandardDecoder.cs (12)
26
/// <summary>Initializes a new instance of the <see cref="
ZstandardDecoder
"/> class with default settings.</summary>
27
/// <exception cref="IOException">Failed to create the <see cref="
ZstandardDecoder
"/> instance.</exception>
35
/// <summary>Initializes a new instance of the <see cref="
ZstandardDecoder
"/> class with the specified maximum window size.</summary>
38
/// <exception cref="IOException">Failed to create the <see cref="
ZstandardDecoder
"/> instance.</exception>
59
/// <summary>Initializes a new instance of the <see cref="
ZstandardDecoder
"/> class with the specified dictionary.</summary>
62
/// <exception cref="IOException">Failed to create the <see cref="
ZstandardDecoder
"/> instance.</exception>
82
/// <summary>Initializes a new instance of the <see cref="
ZstandardDecoder
"/> class with the specified decompression options.</summary>
85
/// <exception cref="IOException">Failed to create the <see cref="
ZstandardDecoder
"/> instance.</exception>
113
/// <summary>Initializes a new instance of the <see cref="
ZstandardDecoder
"/> class with the specified dictionary and maximum window size.</summary>
118
/// <exception cref="IOException">Failed to create the <see cref="
ZstandardDecoder
"/> instance.</exception>
164
/// frames on the same <see cref="
ZstandardDecoder
" /> instance, call
387
/// <summary>Releases all resources used by the <see cref="
ZstandardDecoder
"/>.</summary>
System\IO\Compression\Zstandard\ZstandardStream.Decompress.cs (2)
14
private
ZstandardDecoder
? _decoder;
27
public ZstandardStream(Stream stream,
ZstandardDecoder
decoder, bool leaveOpen = false)