CompilationSection.MaxBatchSize 属性

定义

获取或设置每个成批编译的最大页数。

public:
 property int MaxBatchSize { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("maxBatchSize", DefaultValue=1000)]
public int MaxBatchSize { get; set; }
[<System.Configuration.ConfigurationProperty("maxBatchSize", DefaultValue=1000)>]
member this.MaxBatchSize : int with get, set
Public Property MaxBatchSize As Integer

属性值

Int32

一个指示将编译为单个批处理的最大页数的整数值。 默认页数为 1000。

属性

示例

下面的代码示例演示如何使用 MaxBatchSize 该属性。 此代码示例是为类提供的大型示例的 CompilationSection 一部分。

// Display MaxBatchSize property.
Console.WriteLine("MaxBatchSize: {0}", 
  configSection.MaxBatchSize);

// Set MaxBatchSize property.
configSection.MaxBatchSize = 1000;
' Display MaxBatchSize property.
Console.WriteLine("MaxBatchSize: {0}", _
 configSection.MaxBatchSize)

' Set MaxBatchSize property.
configSection.MaxBatchSize = 1000

适用于