Microsoft.AspNet.WebApi.MessageHandlers.Compression
Microsoft.AspNet.WebApi.MessageHandlers.Compression copied to clipboard
Drop-in module for ASP.Net WebAPI that enables GZip and Deflate support
1. go [here](https://www.nuget.org/packages/Microsoft.AspNet.WebApi.Extensions.Compression.Server/2.0.3) 1. try to click the *License* link on the left 1. see that there is no license
Devs who need strong-named assemblies will benefit from those being published to NuGet. Building these from source is a hassle, albeit a small one.
i have my web API written in .net core 2.1 & andriod, ios clients are using these Web Api's. so can i use this in my scenario? Thanks in anticipation.
I have a WebAPI application (.NET 4.7.2) that works locally on Windows 10 but does not work when deployed to Windows Server 2012R2/IIS8.5. The only clue I can get from...
I just hooked up this library and I am getting "System.ArgumentNullException: Value cannot be null.Parameter name: httpContext" exception. I am using StructureMap as dependency injection which is using HttpContext.Current. Here...
I have installed the Microsoft.AspNet.WebApi.MessageHandlers.Compression.Server package and added the handler ``` private static void RegisterMessageHandlers(this HttpConfiguration config) { config.MessageHandlers.Insert(0, new ServerCompressionHandler(new GZipCompressor(), new DeflateCompressor())); } ``` Unfortunatelly, as I see...
There are times when the response is null. Some of them are partially due to cancelled events.
Any chance of an upgrade?
I'm using a specialized Response.Content of type PushStreamContent to stream content in chunks to client for long-running operations with client progress advance using pairs of stream.WriteAsync() and stream.Flush() (Transfer-Encoding: chunked)....
Added a way to disable compression by default without using global filters / attributes.