次の方法で共有


ProcessModelSection.PingFrequency プロパティ

定義

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

期間を定義する 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 に実行されていない場合、再起動 (バウンス) されます。

適用対象