When i’m trying to edit the Host key on Request.Headers under console application i’m getting exception that says:
The 'Host' header cannot be modified directly.
Parameter name: name
So how can i change it?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
As you’ve seen the .Net Fx does not allow to edit the host header, but since .Net Fx 4.0 there is a seperate ‘Host’ definition on the HttpWebRequest object. You can use it like this:
Hope that helps you out.