CompilationSection.MaxBatchGeneratedFileSize 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 the maximum combined size of the generated source files per batched compilation.
public:
property int MaxBatchGeneratedFileSize { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("maxBatchGeneratedFileSize", DefaultValue=1000)]
public int MaxBatchGeneratedFileSize { get; set; }
[<System.Configuration.ConfigurationProperty("maxBatchGeneratedFileSize", DefaultValue=1000)>]
member this.MaxBatchGeneratedFileSize : int with get, set
Public Property MaxBatchGeneratedFileSize As Integer
Property Value
An integer value indicating the maximum combined size of the generated source files per batched compilation.
- Attributes
Examples
The following code example demonstrates how to use the MaxBatchGeneratedFileSize property. This code example is part of a larger example provided for the CompilationSection class.
// Display MaxBatchGeneratedFileSize property.
Console.WriteLine("MaxBatchGeneratedFileSize: {0}",
configSection.MaxBatchGeneratedFileSize);
// Set MaxBatchGeneratedFileSize property.
configSection.MaxBatchGeneratedFileSize = 1000;
' Display MaxBatchGeneratedFileSize property.
Console.WriteLine("MaxBatchGeneratedFileSize: {0}", _
configSection.MaxBatchGeneratedFileSize)
' Set MaxBatchGeneratedFileSize property.
configSection.MaxBatchGeneratedFileSize = 1000
Remarks
Specifies the maximum size (in kilobytes) of the generated source files per batched compilation. The default value is 1000 KB.