共用方式為


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

屬性值

整數值,表示將會進入單一批次編譯的最多頁數。 預設的頁數為 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

適用於