A few actions of my controller, stream mpeg audio, throttled for limiting bandwidth.
I disabled compression on these actions, using the [Compression(Enabled = false)] attribute.
But this doesn't work, the pipeline message handler only checks this setting, after it has waited for the response to be generated. This makes this library useless for my project.
protected override async Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
{
// Decompress compressed requests to the server
if (request.Content != null && request.Content.Headers.ContentEncoding.Any())
{
await this.DecompressRequest(request);
}
var response = await base.SendAsync(request, cancellationToken).ConfigureAwait(false);
var process = this.enableCompression(request);
try
{
if (response.Content != null)
{
// Buffer content for further processing
await response.Content.LoadIntoBufferAsync();
}
else
{
process = false;
}
}
catch (Exception ex)
{
process = false;
Debug.WriteLine(ex.Message);
}
// Compress uncompressed responses from the server
if (process && response.Content != null && request.Headers.AcceptEncoding.Any())
{
await this.CompressResponse(request, response);
}
return response;
}
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4