다음을 통해 공유


HttpWebRequest.AllowAutoRedirect 속성

정의

요청이 리디렉션 응답을 따라야 하는지 여부를 나타내는 값을 가져오거나 설정합니다.

public:
 virtual property bool AllowAutoRedirect { bool get(); void set(bool value); };
public:
 property bool AllowAutoRedirect { bool get(); void set(bool value); };
public virtual bool AllowAutoRedirect { get; set; }
public bool AllowAutoRedirect { get; set; }
member this.AllowAutoRedirect : bool with get, set
Public Overridable Property AllowAutoRedirect As Boolean
Public Property AllowAutoRedirect As Boolean

속성 값

요청이 인터넷 리소스의 리디렉션 응답을 자동으로 따라야 하는지 true. 그렇지 않으면 false. 기본값은 true.

예제

다음 코드 예제에서는 AllowAutoRedirect 속성을 사용하여 요청이 리디렉션 응답을 따르도록 허용합니다.

// Create a new HttpWebRequest Object to the mentioned URL.
HttpWebRequest^ myHttpWebRequest = (HttpWebRequest^)( WebRequest::Create( "http://www.contoso.com" ) );
myHttpWebRequest->MaximumAutomaticRedirections = 1;
myHttpWebRequest->AllowAutoRedirect = true;
HttpWebResponse^ myHttpWebResponse = (HttpWebResponse^)( myHttpWebRequest->GetResponse() );
// Create a new HttpWebRequest Object to the mentioned URL.
HttpWebRequest myHttpWebRequest=(HttpWebRequest)WebRequest.Create("http://www.contoso.com");	
myHttpWebRequest.MaximumAutomaticRedirections=1;
myHttpWebRequest.AllowAutoRedirect=true;
HttpWebResponse myHttpWebResponse=(HttpWebResponse)myHttpWebRequest.GetResponse();

     'This method creates a new HttpWebRequest Object to the mentioned URL.
         Dim myHttpWebRequest As HttpWebRequest = CType(WebRequest.Create("http://www.contoso.com"), HttpWebRequest)
         myHttpWebRequest.MaximumAutomaticRedirections = 1
         myHttpWebRequest.AllowAutoRedirect = True
         Dim myHttpWebResponse As HttpWebResponse = CType(myHttpWebRequest.GetResponse(), HttpWebResponse)

설명

주의

WebRequest, HttpWebRequest, ServicePointWebClient 사용되지 않으므로 새 개발에 사용하면 안 됩니다. 대신 HttpClient 사용합니다.

요청이 리소스의 새 위치로 HTTP 리디렉션 헤더를 자동으로 따르도록 하려면 AllowAutoRedirecttrue 설정합니다. 따라야 할 최대 리디렉션 수는 MaximumAutomaticRedirections 속성에 의해 설정됩니다.

AllowAutoRedirect false설정되면 HTTP 상태 코드가 300~399인 모든 응답이 애플리케이션에 반환됩니다.

권한 부여 헤더는 자동 리디렉션에서 지워지고 HttpWebRequest 리디렉션된 위치에 자동으로 다시 인증을 시도합니다. 실제로 이는 리디렉션이 발생할 수 있는 경우 애플리케이션이 인증 헤더에 사용자 지정 인증 정보를 넣을 수 없다는 것을 의미합니다. 대신 애플리케이션은 사용자 지정 인증 모듈을 구현하고 등록해야 합니다. System.Net.AuthenticationManager 및 관련 클래스는 사용자 지정 인증 모듈을 구현하는 데 사용됩니다. AuthenticationManager.Register 메서드는 사용자 지정 인증 모듈을 등록합니다.

적용 대상