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)
49
_decoder = new
ZstandardDecoder
(decompressionOptions);
13 references to ZstandardDecoder
System.IO.Compression (13)
System\IO\Compression\Zstandard\ZstandardDecoder.cs (11)
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>
379
/// <summary>Releases all resources used by the <see cref="
ZstandardDecoder
"/>.</summary>
System\IO\Compression\Zstandard\ZstandardStream.Decompress.cs (2)
14
private
ZstandardDecoder
? _decoder;
23
public ZstandardStream(Stream stream,
ZstandardDecoder
decoder, bool leaveOpen = false)