Aracılığıyla paylaş


ProcessModelSection.PingTimeout Özellik

Tanım

Yanıt vermeyen bir çalışan işleminin yeniden başlatıldığı zaman aralığını belirten bir değeri alır veya ayarlar.

public:
 property TimeSpan PingTimeout { TimeSpan get(); void set(TimeSpan value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteTimeSpanConverter))]
[System.Configuration.ConfigurationProperty("pingTimeout", DefaultValue="10675199.02:48:05.4775807")]
public TimeSpan PingTimeout { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteTimeSpanConverter))>]
[<System.Configuration.ConfigurationProperty("pingTimeout", DefaultValue="10675199.02:48:05.4775807")>]
member this.PingTimeout : TimeSpan with get, set
Public Property PingTimeout As TimeSpan

Özellik Değeri

TimeSpan Zaman aralığını tanımlama. Varsayılan değer 5 saniyedir.

Öznitelikler

Örnekler

Aşağıdaki kod örneği özelliğine nasıl erişeceklerini PingTimeout gösterir.


// Get the current PingTimeout property value.
TimeSpan pingTimeout = 
    processModelSection.PingTimeout;

// Set the PingTimeout property to TimeSpan.Parse("00:00:30").
processModelSection.PingTimeout = 
    TimeSpan.Parse("00:00:30");
' Get the current PingTimeout property value.
   Dim pingTimeout As TimeSpan = _
   processModelSection.PingTimeout

' Set the PingTimeout property to TimeSpan.Parse("00:00:30").
   processModelSection.PingTimeout = _
   TimeSpan.Parse("00:00:30")

Açıklamalar

ISAPI uzantıları, çalışan işlemine aralıkta PingFrequency ping gönderir. Çalışan işlemi aralık içinde PingTimeout yanıt vermezse işlem yeniden başlatılır.

Şunlara uygulanır