Aracılığıyla paylaş


CompilationSection.BatchTimeout Özellik

Tanım

Toplu derleme için zaman aşımı süresini saniye cinsinden alır veya ayarlar.

public:
 property TimeSpan BatchTimeout { TimeSpan get(); void set(TimeSpan value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.TimeSpanSecondsOrInfiniteConverter))]
[System.Configuration.ConfigurationProperty("batchTimeout", DefaultValue="00:15:00")]
[System.Configuration.TimeSpanValidator(MaxValueString="10675199.02:48:05.4775807", MinValueString="00:00:00")]
public TimeSpan BatchTimeout { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.TimeSpanSecondsOrInfiniteConverter))>]
[<System.Configuration.ConfigurationProperty("batchTimeout", DefaultValue="00:15:00")>]
[<System.Configuration.TimeSpanValidator(MaxValueString="10675199.02:48:05.4775807", MinValueString="00:00:00")>]
member this.BatchTimeout : TimeSpan with get, set
Public Property BatchTimeout As TimeSpan

Özellik Değeri

TimeSpan

Toplu derlemenin gerçekleşmesi için saniye cinsinden verilen süreyi gösteren değer.

Öznitelikler

Örnekler

Aşağıdaki kod örneği özelliğinin nasıl kullanılacağını BatchTimeout 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 BatchTimeout property.
Console.WriteLine("BatchTimeout: {0}",
  configSection.BatchTimeout);

// Set BatchTimeout property.
configSection.BatchTimeout = TimeSpan.FromMinutes(15);
' Display BatchTimeout property.
Console.WriteLine("BatchTimeout: {0}", _
 configSection.BatchTimeout)

' Set BatchTimeout property.
configSection.BatchTimeout = TimeSpan.FromMinutes(15)

Açıklamalar

Toplu derleme için zaman aşımı süresini saniye cinsinden gösterir. Derleme zaman aşımı süresi içinde tamamlanamazsa, derleyici geçerli sayfa için tek derleme moduna geri döner.

Şunlara uygulanır