CompilationSection.Batch Property

Definition

Gets or sets a value indicating whether batch compilation is attempted.

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

Property Value

true if batch compilation is attempted; otherwise, false. The default is true.

Attributes

Examples

The following code example demonstrates how to use the Batch property. This code example is part of a larger example provided for the CompilationSection class.

// 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

Remarks

Set this attribute to true to change the delay caused by the required compilation when you access an uncompiled file. Setting this attribute to true instructs ASP.NET to precompile all the uncompiled files in batch mode. A delay occurs when the files are first compiled; however once the files are compiled, the delay is eliminated.

Applies to