다음을 통해 공유


CompilationSection.BatchTimeout 속성

정의

일괄 컴파일의 제한 시간(초)을 가져오거나 설정합니다.

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

속성 값

TimeSpan

일괄 컴파일 작업에 허용된 시간(초)을 나타내는 값입니다.

특성

예제

다음 코드 예제를 사용 하는 방법에 설명 합니다 BatchTimeout 속성입니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 CompilationSection 클래스입니다.

// Display BatchTimeout property.
Console.WriteLine("BatchTimeout: {0}",
  configSection.BatchTimeout);

// Set BatchTimeout property.
configSection.BatchTimeout = TimeSpan.FromMinutes(15);
' Display BatchTimeout property.
Console.WriteLine("BatchTimeout: {0}", _
 configSection.BatchTimeout)

' Set BatchTimeout property.
configSection.BatchTimeout = TimeSpan.FromMinutes(15)

설명

제한 시간을 (초), 일괄 컴파일 나타냅니다. 컴파일을 제한 시간 안에 완료할 수 없는 경우 컴파일러는 현재 페이지에 대해 단일 컴파일 모드로 되돌아갑니다.

적용 대상