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

适用于