Reputation: 4416
How can I set the HTTP protocol version to HTTP/1.0 in the response of a IHttpHandler?
Upvotes: 0
Views: 396
Reputation: 189535
You can't control the protocol version that IIS responds with.
IIS should respond in a manner consistent with a 1.0 client if the request indicates 1.0 however the response header will still indicate that the server supports 1.1.
This is correct behaviour.
Upvotes: 2