Aracılığıyla paylaş


HttpRuntimeSection.ExecutionTimeout Özellik

Tanım

İstek için izin verilen yürütme süresini alır veya ayarlar.

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

Özellik Değeri

TimeSpan

TimeSpan İstek için izin verilen yürütme süresini gösteren değer.

Öznitelikler

Özel durumlar

İstek yürütme süresi, yürütme zaman aşımı tarafından ayarlanan sınırı aştı.

Örnekler

Aşağıdaki örnekte özelliğinin nasıl kullanılacağı gösterilmektedir ExecutionTimeout .

// Get the ExecutionTimeout property value.
Response.Write("ExecutionTimeout: " +
  configSection.ExecutionTimeout.ToString() + "<br>");

// Set the ExecutionTimeout property value to 2 minutes.
configSection.ExecutionTimeout = TimeSpan.FromMinutes(2);
' Get the ExecutionTimeout property value.
Response.Write("ExecutionTimeout: " & _
  configSection.ExecutionTimeout.ToString() & "<br>")

' Set the ExecutionTimeout property value to 2 minutes.
configSection.ExecutionTimeout = TimeSpan.FromMinutes(2)

Açıklamalar

özelliği, ExecutionTimeout bir isteğin ASP.NET tarafından otomatik olarak kapatılmadan önce yürütülmesine izin verilen en fazla saniye sayısını gösterir. Varsayılan değer 110 saniyedir. Bu zaman aşımı yalnızca öğesindeki <compilation> debug özniteliği olarak falseayarlandığında geçerlidir.

Zaman aşımı süresi dolarsa bir özel durum oluşur. İlgili bilgileri Olay Günlüğü'ndeki Uygulama klasörüne kaydedebilirsiniz. Bunu, yapılandırma öğesinde <healthMonitoring> uygulama durumu izlemeyi etkinleştirerek yaparsınız.

Şunlara uygulanır