共用方式為


BuildManager.BatchCompilationEnabled 屬性

定義

取得或設定值,這個值表示是否啟用批次編譯。

public:
 static property Nullable<bool> BatchCompilationEnabled { Nullable<bool> get(); void set(Nullable<bool> value); };
public static bool? BatchCompilationEnabled { get; set; }
static member BatchCompilationEnabled : Nullable<bool> with get, set
Public Shared Property BatchCompilationEnabled As Nullable(Of Boolean)

屬性值

如果一律啟用批次編譯則為 true,如果一律不啟用批次編譯則為 false,如果由組態檔決定編譯設定則為 null。 預設值是 null

例外狀況

PreApplicationStart 方法中未設定該屬性。

備註

此屬性可讓您以程式設計方式開啟或關閉批次編譯。 它會對應至 batch Web.config 檔案中項目的 屬性 compilation 。 如需詳細資訊,請參閱 編譯元素 (ASP.NET 設定架構)

屬性只能在方法中 PreApplicationStart 設定。 如需 PreApplicationStart 方法的詳細資訊,請參閱 PreApplicationStartMethodAttribute

適用於