Is there any way to change value of Date header, returned in response? I tried to set header on HttpResponse
message in WebAPI action.
When I do this in OWIN configuration
app.Use((c, a) =>
{
c.Response.OnSendingHeaders(o =>
{
c.Response.Headers.Clear();
}, null);
return a();
});
I still receive 3 headers:
Content-Length: 3705
Server: Microsoft-HTTPAPI/2.0
Date: Sat, 29 Mar 2014 18:53:32 GMT
Is there any way to change value of them? Look like they are being set on very low level in pipeline.