.NET IHttpHandler and HTTP / 1.0

How can I set the HTTP protocol version to HTTP / 1.0 in the IHttpHandler response?

0


source to share


1 answer


You have no control over the protocol version that IIS responds to.

IIS should respond as per client 1.0 if the request specifies 1.0, however the response header will still indicate that the server supports 1.1.



This is the correct behavior.

+2


source







All Articles