ProcessModelSection.PingTimeout プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
応答のないワーカー プロセスを再起動するまでの期間を示す値を取得または設定します。
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 拡張機能は、ワーカー プロセスに間隔を指定して ping を実行 PingFrequency します。 ワーカー プロセスが期間内に PingTimeout 応答しない場合は、プロセスが再起動されます。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET