共用方式為


ProcessModelSection.Timeout 屬性

定義

取得或設定值,表示 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

屬性值

TimeSpan

TimeSpan,定義間隔。 預設值為 Infinite。

屬性

範例

下列程式碼範例示範如何使用 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

備註

ASP.NET 啟動新的背景工作進程,以取代目前的背景工作進程。

適用於