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 在批处理模式下预编译所有未编译的文件。 首次编译文件时发生延迟;但是,编译文件后,会消除延迟。

适用于