Поделиться через


ProcessModelSection.PingTimeout Свойство

Определение

Возвращает или задает значение, указывающее временной интервал, после которого не отвечающий рабочий процесс перезапускается.

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

Значение свойства

TimeSpan, определяющий временной интервал. Значение по умолчанию — 5 секунд.

Атрибуты

Примеры

В следующем примере кода показано, как осуществляется доступ к свойству PingTimeout.


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

Комментарии

Расширения ISAPI с интервалом проверки проверки связь с рабочим процессом PingFrequency . Если рабочий процесс не отвечает в течение интервала PingTimeout , процесс перезапускается.

Применяется к