次の方法で共有


SessionStateSection.StateNetworkTimeout プロパティ

定義

Web サーバーと状態サーバー間のネットワーク接続がアイドルでいられる時間を取得または設定します。

public:
 property TimeSpan StateNetworkTimeout { TimeSpan get(); void set(TimeSpan value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.TimeSpanSecondsOrInfiniteConverter))]
[System.Configuration.ConfigurationProperty("stateNetworkTimeout", DefaultValue="00:00:10")]
public TimeSpan StateNetworkTimeout { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.TimeSpanSecondsOrInfiniteConverter))>]
[<System.Configuration.ConfigurationProperty("stateNetworkTimeout", DefaultValue="00:00:10")>]
member this.StateNetworkTimeout : TimeSpan with get, set
Public Property StateNetworkTimeout As TimeSpan

プロパティ値

TimeSpan

セッションが放棄されるまでの Web サーバーと状態サーバー間のネットワーク接続のアイドル時間 (秒単位)。 既定値は 10 秒です。

属性

次のコード例は、プロパティを取得する方法を StateNetworkTimeout 示しています。 オブジェクトにアクセスする方法については、クラス トピックの SessionStateSection コード例を SessionStateSection 参照してください。

// Display the current StateNetworkTimeout property value.
Console.WriteLine("StateNetworkTimeout: {0}",
  sessionStateSection.StateNetworkTimeout);
' Display the current StateNetworkTimeout property value.
Console.WriteLine("StateNetworkTimeout: {0}", _
  sessionStateSection.StateNetworkTimeout)

注釈

この sessionStateSection 属性は、プロパティが に Mode 設定されている場合に StateServer必要です。

適用対象