BuildManager.BatchCompilationEnabled Property    
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that indicates whether batch compilation is enabled.
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, setPublic Shared Property BatchCompilationEnabled As Nullable(Of Boolean)Property Value
true if batch compilation is always enabled, false if batch compilation is never enabled, or null if the compilation setting is determined from the configuration file. The default value is null.
Exceptions
The property was not set in the PreApplicationStart method.
Remarks
This property enables you to turn batch compilation on or off programmatically. It corresponds to the batch attribute of the compilation element in the Web.config file. For more information, see compilation Element (ASP.NET Settings Schema).
The property can be set only in the PreApplicationStart method. For more information about the PreApplicationStart method, see PreApplicationStartMethodAttribute.