3 instantiations of ZLibStream
Microsoft.AspNetCore.RequestDecompression (1)
DeflateDecompressionProvider.cs (1)
20return new ZLibStream(stream, CompressionMode.Decompress, leaveOpen: true);
Microsoft.AspNetCore.RequestDecompression.Tests (1)
RequestDecompressionMiddlewareTests.cs (1)
65new ZLibStream(compressedContent, CompressionMode.Compress);
System.Net.Http (1)
System\Net\Http\SocketsHttpHandler\DecompressionHandler.cs (1)
307new ZLibStream(stream, CompressionMode.Decompress) :
13 references to ZLibStream
Microsoft.AspNetCore.RequestDecompression.Tests (2)
DefaultRequestDecompressionProviderTests.cs (2)
19[InlineData("deflate", typeof(ZLibStream))] 20[InlineData("DEFLATE", typeof(ZLibStream))]
System.IO.Compression (10)
System\IO\Compression\ZLibCompressionOptions.cs (2)
7/// Provides compression options to be used with <see cref="ZLibStream"/>, <see cref="DeflateStream"/> and <see cref="GZipStream"/>. 51/// Defines the compression algorithms that can be used for <see cref="DeflateStream"/>, <see cref="GZipStream"/> or <see cref="ZLibStream"/>.
System\IO\Compression\ZLibStream.cs (8)
16/// <summary>Initializes a new instance of the <see cref="ZLibStream"/> class by using the specified stream and compression mode.</summary> 23/// <summary>Initializes a new instance of the <see cref="ZLibStream"/> class by using the specified stream, compression mode, and whether to leave the <paramref name="stream"/> open.</summary> 26/// <param name="leaveOpen"><see langword="true" /> to leave the stream object open after disposing the <see cref="ZLibStream"/> object; otherwise, <see langword="false" />.</param> 32/// <summary>Initializes a new instance of the <see cref="ZLibStream"/> class by using the specified stream and compression level.</summary> 39/// <summary>Initializes a new instance of the <see cref="ZLibStream"/> class by using the specified stream, compression level, and whether to leave the <paramref name="stream"/> open.</summary> 42/// <param name="leaveOpen"><see langword="true" /> to leave the stream object open after disposing the <see cref="ZLibStream"/> object; otherwise, <see langword="false" />.</param> 49/// Initializes a new instance of the <see cref="ZLibStream"/> class by using the specified stream, compression options, and optionally leaves the stream open. 53/// <param name="leaveOpen"><see langword="true" /> to leave the stream object open after disposing the <see cref="ZLibStream"/> object; otherwise, <see langword="false" />.</param>
System.Net.Http (1)
System\Net\Http\SocketsHttpHandler\DecompressionHandler.cs (1)
228/// <summary>Stream that wraps either <see cref="ZLibStream"/> or <see cref="DeflateStream"/> for decompression.</summary>