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)
14private ZstandardDecoder? _decoder; 23public ZstandardStream(Stream stream, ZstandardDecoder decoder, bool leaveOpen = false)