Microsoft.AspNet.WebApi.MessageHandlers.Compression icon indicating copy to clipboard operation
Microsoft.AspNet.WebApi.MessageHandlers.Compression copied to clipboard

Drop-in module for ASP.Net WebAPI that enables GZip and Deflate support

Results 16 Microsoft.AspNet.WebApi.MessageHandlers.Compression issues
Sort by recently updated
recently updated
newest added

Currently, compression is enabled by default and can be disabled for a specific API (or controller) using `[Compression(Enabled = false)]`. I'd like to be able to have compression disabled by...

Hi, nice lib. https://github.com/azzlack/Microsoft.AspNet.WebApi.MessageHandlers.Compression/blob/master/src/Microsoft.AspNet.WebApi.MessageHandlers.Compression/ClientCompressionHandler.cs#L103 If downloading large gzip response will this will buffer the complete response before decompressing? If so, is it wise? Does the lib supported chunked responses? Cheers

bug
enhancement

Hello, package path is too long. Jenkins can't build the project with this nuget package :: The specified path, file name, or both are too long. The fully qualified file...

If the client refused all schemes through "identity;q=0" or *;q=0. I am still getting a non-compressed response instead of a 406 - Not Acceptable exception. I also noticed that the...

Hi, I'm using Owin based WebApi project. After adding your middleware and making few successful requests getting following exception and application crashes: System.AccessViolationException was unhandled Message: An unhandled exception of...

I see there are a few nice toggles like contentSizeThreshold and the ability to turn compression off for a controller or action method via CompressionAttribute. However, being able to define...