2 instantiations of ZstandardDecoder
System.IO.Compression.Zstandard (2)
System\IO\Compression\ZstandardStream.cs (2)
73_decoder = new ZstandardDecoder(); 105_decoder = new ZstandardDecoder(dictionary);
11 references to ZstandardDecoder
System.IO.Compression.Zstandard (11)
System\IO\Compression\ZstandardDecoder.cs (9)
23/// <summary>Initializes a new instance of the <see cref="ZstandardDecoder"/> class with default settings.</summary> 24/// <exception cref="IOException">Failed to create the <see cref="ZstandardDecoder"/> instance.</exception> 32/// <summary>Initializes a new instance of the <see cref="ZstandardDecoder"/> class with the specified maximum window size.</summary> 35/// <exception cref="IOException">Failed to create the <see cref="ZstandardDecoder"/> instance.</exception> 56/// <summary>Initializes a new instance of the <see cref="ZstandardDecoder"/> class with the specified dictionary.</summary> 59/// <exception cref="IOException">Failed to create the <see cref="ZstandardDecoder"/> instance.</exception> 79/// <summary>Initializes a new instance of the <see cref="ZstandardDecoder"/> class with the specified dictionary and maximum window size.</summary> 84/// <exception cref="IOException">Failed to create the <see cref="ZstandardDecoder"/> instance.</exception> 345/// <summary>Releases all resources used by the <see cref="ZstandardDecoder"/>.</summary>
System\IO\Compression\ZstandardStream.Decompress.cs (2)
14private ZstandardDecoder? _decoder; 23public ZstandardStream(Stream stream, ZstandardDecoder decoder, bool leaveOpen = false)