PagesSection.AsyncTimeout Property

Definition

Gets or sets a value indicating the number of seconds to wait for an asynchronous handler to complete during asynchronous page processing.

public:
 property TimeSpan AsyncTimeout { TimeSpan get(); void set(TimeSpan value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.TimeSpanSecondsConverter))]
[System.Configuration.ConfigurationProperty("asyncTimeout", DefaultValue="00:00:45")]
[System.Configuration.TimeSpanValidator(MaxValueString="10675199.02:48:05.4775807", MinValueString="00:00:00")]
public TimeSpan AsyncTimeout { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.TimeSpanSecondsConverter))>]
[<System.Configuration.ConfigurationProperty("asyncTimeout", DefaultValue="00:00:45")>]
[<System.Configuration.TimeSpanValidator(MaxValueString="10675199.02:48:05.4775807", MinValueString="00:00:00")>]
member this.AsyncTimeout : TimeSpan with get, set
Public Property AsyncTimeout As TimeSpan

Property Value

A TimeSpan value indicating the amount of time in seconds to wait for an asynchronous handler to complete during asynchronous page processing.

Attributes

Remarks

The default value is 45 seconds.

Applies to

See also