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)

注解

sessionStateSectionMode属性设置为 StateServer.

适用于