Aracılığıyla paylaş


CompilationSection.MaxBatchSize Özellik

Tanım

Toplu derleme başına en fazla sayfa sayısını alır veya ayarlar.

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

Özellik Değeri

Tek bir toplu iş halinde derlenecek en fazla sayfa sayısını gösteren tamsayı değeri. Varsayılan sayfa sayısı 1000'dir.

Öznitelikler

Örnekler

Aşağıdaki kod örneği özelliğinin MaxBatchSize nasıl kullanılacağını gösterir. Bu kod örneği, sınıfı için CompilationSection sağlanan daha büyük bir örneğin parçasıdır.

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

Şunlara uygulanır