Equivalent to HTTP status 302. HttpStatusCode.Redirect indicates that the requested information is located at the URI specified in the Location header. The default action when this status is received is to follow the Location header associated with the response. When the original request method was POST, the redirected request will use the GET method.
Value: Found
If the HttpWebRequest.AllowAutoRedirect property is false, HttpStatusCode.Redirect will cause an exception to be thrown.
HttpStatusCode.Redirect is a synonym for HttpStatusCode.Found.