다음을 통해 공유


CompilationSection.Batch 속성

정의

일괄 컴파일을 시도할지 여부를 나타내는 값을 가져오거나 설정합니다.

public:
 property bool Batch { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("batch", DefaultValue=true)]
public bool Batch { get; set; }
[<System.Configuration.ConfigurationProperty("batch", DefaultValue=true)>]
member this.Batch : bool with get, set
Public Property Batch As Boolean

속성 값

일괄 컴파일을 시도하면 true이고, 그렇지 않으면 false입니다. 기본값은 true입니다.

특성

예제

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

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

// Set Batch property.
configSection.Batch = true;
' Display Batch property.
Console.WriteLine("Batch: {0}", _
 configSection.Batch)

' Set Batch property.
configSection.Batch = True

설명

이 특성을 설정 true 컴파일되지 않은 파일에 액세스할 때 필요한 컴파일으로 인 한 지연 시간을 변경 합니다. 이 특성을 설정 true 일괄 처리 모드에서 컴파일되지 않은 모든 파일을 미리 컴파일하는 ASP.NET에 지시 합니다. 먼저 파일; 컴파일되면 지연 발생 그러나 파일을 컴파일한 후에 지연 제거 됩니다.

적용 대상