Sdílet prostřednictvím


ProcessModelSection.Timeout Vlastnost

Definice

Získá nebo nastaví hodnotu označující počet minut, dokud ASP.NET nespustí nový pracovní proces.

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

Hodnota vlastnosti

TimeSpan

Definování TimeSpan intervalu. Výchozí hodnota je Nekonečné.

Atributy

Příklady

Následující příklad kódu ukazuje, jak použít Timeout vlastnost.


// 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

Poznámky

ASP.NET spustí nový pracovní proces, který bude na místě aktuálního pracovního procesu.

Platí pro