10 writes to AutomaticDecompression
Aspire.Dashboard.Tests (2)
Integration\ResponseCompressionTests.cs (2)
21using var httpClientHandler = new HttpClientHandler { AutomaticDecompression = DecompressionMethods.None }; 43using var httpClientHandler = new HttpClientHandler { AutomaticDecompression = DecompressionMethods.None };
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceModelHttpMessageHandler.cs (1)
19set { _innerHandler.AutomaticDecompression = value; }
IIS.FunctionalTests (1)
src\Servers\IIS\IIS\test\Common.FunctionalTests\CompressionTests.cs (1)
128AutomaticDecompression = DecompressionMethods.GZip
IISExpress.FunctionalTests (1)
src\Servers\IIS\IIS\test\Common.FunctionalTests\CompressionTests.cs (1)
128AutomaticDecompression = DecompressionMethods.GZip
Microsoft.DotNet.Build.Tasks.Feed (1)
src\PublishArtifactsInManifestBase.cs (1)
938handler.AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate;
Microsoft.Extensions.AI.OpenAI.Tests (1)
OpenAIAssistantChatClientIntegrationTests.cs (1)
70AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate,
ServerComparison.FunctionalTests (1)
ResponseCompressionTests.cs (1)
137var httpClientHandler = new HttpClientHandler() { AutomaticDecompression = DecompressionMethods.None };
System.ServiceModel.Http (2)
System\ServiceModel\Channels\HttpChannelFactory.cs (2)
275clientHandler.AutomaticDecompression = DecompressionMethods.Deflate | DecompressionMethods.GZip; 279clientHandler.AutomaticDecompression = DecompressionMethods.None;
1 reference to AutomaticDecompression
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceModelHttpMessageHandler.cs (1)
18get { return _innerHandler.AutomaticDecompression; }