다음을 통해 공유


WebRequest.Timeout 속성

정의

요청 시간이 초과되기 전의 시간 길이(밀리초)를 가져오거나 설정합니다.

public:
 virtual property int Timeout { int get(); void set(int value); };
public virtual int Timeout { get; set; }
member this.Timeout : int with get, set
Public Overridable Property Timeout As Integer

속성 값

요청 시간이 초과될 때까지의 시간(밀리초)이거나 요청 시간이 초과되지 않음을 나타내는 값이 Infinite. 기본값은 하위 클래스에 의해 정의됩니다.

예외

속성이 하위 클래스에서 재정의되지 않은 경우 속성을 얻거나 설정하려고 합니다.

예제

다음은 Timeout 속성을 10000밀리초로 설정하는 예제입니다. 리소스를 반환하기 전에 제한 시간이 만료되면 WebException throw됩니다.

// Create a new WebRequest Object to the mentioned URL.
WebRequest^ myWebRequest = WebRequest::Create( "http://www.contoso.com" );
Console::WriteLine( "\nThe Timeout time of the request before setting is : {0} milliseconds", myWebRequest->Timeout );

// Set the 'Timeout' property in Milliseconds.
myWebRequest->Timeout = 10000;

// This request will throw a WebException if it reaches the timeout limit
// before it is able to fetch the resource.
WebResponse^ myWebResponse = myWebRequest->GetResponse();

         // Create a new WebRequest Object to the mentioned URL.
WebRequest myWebRequest=WebRequest.Create("http://www.contoso.com");
Console.WriteLine("\nThe Timeout time of the request before setting is : {0} milliseconds",myWebRequest.Timeout);

// Set the 'Timeout' property in Milliseconds.
myWebRequest.Timeout=10000;

// This request will throw a WebException if it reaches the timeout limit before it is able to fetch the resource.
         WebResponse myWebResponse=myWebRequest.GetResponse();

   ' Create a new WebRequest Object to the mentioned URL.
   Dim myWebRequest As WebRequest = WebRequest.Create("http://www.contoso.com")
   Console.WriteLine(ControlChars.Cr + "The Timeout time of the request before setting is : {0} milliseconds", myWebRequest.Timeout)

   ' Set the 'Timeout' property in Milliseconds.
myWebRequest.Timeout = 10000

  ' Assign the response object of 'WebRequest' to a 'WebResponse' variable.
   Dim myWebResponse As WebResponse = myWebRequest.GetResponse()

설명

주의

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

Timeout 속성은 요청 시간이 초과되고 WebExceptionthrow할 때까지의 시간(밀리초)을 나타냅니다. Timeout 속성은 GetResponse 메서드를 사용한 동기 요청에만 영향을 줍니다. 비동기 요청을 제한하려면 Abort 메서드를 사용합니다.

메모

WebRequest 클래스는 abstract 클래스입니다. 런타임에 WebRequest 인스턴스의 실제 동작은 WebRequest.Create 메서드에서 반환된 하위 클래스에 의해 결정됩니다. 기본값 및 예외에 대한 자세한 내용은 HttpWebRequestFileWebRequest같은 하위 클래스에 대한 설명서를 참조하세요.

상속자 참고

하위 클래스는 Status 필드가 Timeout설정된 WebException throw하여 시간 제한을 신호로 표시합니다. Timeout Infinite 설정되면 하위 클래스는 시간 초과되지 않습니다.

적용 대상

추가 정보