HttpRequest.TimedOutToken Property

Definition

Gets a CancellationToken object that is tripped when a request times out.

public System.Threading.CancellationToken TimedOutToken { get; }

Property Value

The cancellation token.

Remarks

The timeout period can be specified in the Web.config file (see HttpRuntimeSection.ExecutionTimeout) or programmatically (see HttpServerUtility.ScriptTimeout). The timeout period is measured from the time the request comes in. If the default timeout of 110 seconds is in effect, the cancellation token will be tripped no earlier than 110 seconds after request processing begins. You can change the HttpServerUtility.ScriptTimeout property value, and as long this token hasn't tripped yet, the new timeout value will be respected.

Currently the token only provides 15 second granularity, which means that if the timeout value is 110 seconds, the token will be tripped sometime between 110 and 125 seconds after request processing begins. The granularity may change in the future.

Even though this property is thread-safe, there are restrictions on its use. For more information, see HttpResponse.ClientDisconnectedToken.

This property is meaningless if WebSockets request processing has started.

Applies to

제품 버전
.NET Framework 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1