ProcessModelSection.PingFrequency プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ISAPI 拡張機能がワーカー プロセスに ping を実行してワーカー プロセスが実行中かどうかを確認する間隔を示す値を取得または設定します。
public:
property TimeSpan PingFrequency { TimeSpan get(); void set(TimeSpan value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteTimeSpanConverter))]
[System.Configuration.ConfigurationProperty("pingFrequency", DefaultValue="10675199.02:48:05.4775807")]
public TimeSpan PingFrequency { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteTimeSpanConverter))>]
[<System.Configuration.ConfigurationProperty("pingFrequency", DefaultValue="10675199.02:48:05.4775807")>]
member this.PingFrequency : TimeSpan with get, set
Public Property PingFrequency As TimeSpan
プロパティ値
期間を定義する TimeSpan。 既定値は 30 秒です。
- 属性
例
PingFrequency プロパティへのアクセス方法を次のコード例に示します。
// Get the current PingFrequency property value.
TimeSpan pingFreq =
processModelSection.PingFrequency;
// Set the PingFrequency property to
// TimeSpan.Parse("00:01:00").
processModelSection.PingFrequency =
TimeSpan.Parse("00:01:00");
' Get the current PingFrequency property value.
Dim pingFreq As TimeSpan = _
processModelSection.PingFrequency
' Set the PingFrequency property to
' TimeSpan.Parse("00:01:00").
processModelSection.PingFrequency = _
TimeSpan.Parse("00:01:00")
注釈
ワーカー プロセスは、間隔の有効期限が切れた後 PingFrequency に実行されていない場合、再起動 (バウンス) されます。