ProcessModelSection.PingTimeout Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value indicating the time interval after which a non-responsive worker process is restarted.
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
Property Value
The TimeSpan defining the time interval. The default is 5 seconds.
- Attributes
Examples
The following code example shows how to access the PingTimeout property.
// 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")
Remarks
The ISAPI extensions ping the worker process at the PingFrequency interval. If the worker process does not respond within the PingTimeout interval, the process is restarted.