ProcessModelSection.Timeout Propriété

Définition

Obtient ou définit une valeur indiquant le nombre de minutes antérieures au lancement d'un nouveau processus de traitement par ASP.NET.

public:
 property TimeSpan Timeout { TimeSpan get(); void set(TimeSpan value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteTimeSpanConverter))]
[System.Configuration.ConfigurationProperty("timeout", DefaultValue="10675199.02:48:05.4775807")]
public TimeSpan Timeout { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteTimeSpanConverter))>]
[<System.Configuration.ConfigurationProperty("timeout", DefaultValue="10675199.02:48:05.4775807")>]
member this.Timeout : TimeSpan with get, set
Public Property Timeout As TimeSpan

Valeur de propriété

TimeSpan

TimeSpan définissant l'intervalle. La valeur par défaut est Infinite.

Attributs

Exemples

L'exemple de code suivant montre comment utiliser la propriété Timeout.


// Get the current RequestQueueLimit property value.
int requestQueueLimit =
    processModelSection.RequestQueueLimit;

// Set the RequestQueueLimit property to 10240.
processModelSection.RequestQueueLimit = 10240;
' Get the current RequestQueueLimit property value.
   Dim requestQueueLimit As Integer = _
   processModelSection.RequestQueueLimit

' Set the RequestQueueLimit property to 10240.
processModelSection.RequestQueueLimit = 10240

Remarques

ASP.NET lance un nouveau processus de travail à la place du processus actuel.

S’applique à