Use this code to disable HTTP Keep-Alive on the client:
_http.DefaultRequestHeaders.ConnectionClose = true;
This will set Connection
request header to close
.
Use this code to disable HTTP Keep-Alive on the client:
_http.DefaultRequestHeaders.ConnectionClose = true;
This will set Connection
request header to close
.