BuildManager.BatchCompilationEnabled 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,這個值表示是否啟用批次編譯。
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。