vote up 1 vote down star

Hi

In .Net 2.0 how can I disallow AutoRedirect when using WebRequest? I found some source code were there where used an AllowAutoRedirect property, but on my WebRequest there is no such property.

flag

2 Answers

vote up 2 vote down check

You need to cast it to a HttpWebRequest

HttpWebRequest WebRequest =
(HttpWebRequest)System.Net.WebRequest.Create("http://www.mySite.com");
WebRequest.AllowAutoRedirect = false;
link|flag
I'm glad you undeleted this - I was wondering why, given that it shows the cast :) – Jon Skeet Feb 5 at 13:11
I made an error while editing while I was attempting to add a reference to the source. – cgreeno Feb 5 at 13:18
vote up 1 vote down

WebRequest itself doesn't have such a property, but HttpWebRequest does. If you cast to HttpWebRequest, you can set AllowAutoRedirect to false.

If your web request really isn't an HttpWebRequest, please explain what kind of request it is.

link|flag
I've noticed that most people use the term "WebRequest" and "HttpWebRequest" almost synonymously. Do you think it's because the FileWebRequest class isn't commonly used? – Cerebrus Feb 5 at 13:46
@Cerebrus: I've certainly never used it. – Jon Skeet Feb 5 at 13:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.