2 instantiations of ZstandardDecoder
System.IO.Compression (2)
System\IO\Compression\Zstandard\ZstandardStream.cs (2)
75
_decoder = new
ZstandardDecoder
();
107
_decoder = new
ZstandardDecoder
(dictionary);
11 references to ZstandardDecoder
System.IO.Compression (11)
System\IO\Compression\Zstandard\ZstandardDecoder.cs (9)
25
/// <summary>Initializes a new instance of the <see cref="
ZstandardDecoder
"/> class with default settings.</summary>
26
/// <exception cref="IOException">Failed to create the <see cref="
ZstandardDecoder
"/> instance.</exception>
34
/// <summary>Initializes a new instance of the <see cref="
ZstandardDecoder
"/> class with the specified maximum window size.</summary>
37
/// <exception cref="IOException">Failed to create the <see cref="
ZstandardDecoder
"/> instance.</exception>
58
/// <summary>Initializes a new instance of the <see cref="
ZstandardDecoder
"/> class with the specified dictionary.</summary>
61
/// <exception cref="IOException">Failed to create the <see cref="
ZstandardDecoder
"/> instance.</exception>
81
/// <summary>Initializes a new instance of the <see cref="
ZstandardDecoder
"/> class with the specified dictionary and maximum window size.</summary>
86
/// <exception cref="IOException">Failed to create the <see cref="
ZstandardDecoder
"/> instance.</exception>
347
/// <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)