다음을 통해 공유


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 간격 정의입니다. 기본값은 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 새 작업자 프로세스를 시작하여 현재 작업자 프로세스를 대신합니다.

적용 대상