SessionStateSection.Timeout 属性

定义

获取或设置会话超时。

public:
 property TimeSpan Timeout { TimeSpan get(); void set(TimeSpan value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.TimeSpanMinutesOrInfiniteConverter))]
[System.Configuration.ConfigurationProperty("timeout", DefaultValue="00:20:00")]
[System.Configuration.TimeSpanValidator(MaxValueString="10675199.02:48:05.4775807", MinValueString="00:01:00")]
public TimeSpan Timeout { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.TimeSpanMinutesOrInfiniteConverter))>]
[<System.Configuration.ConfigurationProperty("timeout", DefaultValue="00:20:00")>]
[<System.Configuration.TimeSpanValidator(MaxValueString="10675199.02:48:05.4775807", MinValueString="00:01:00")>]
member this.Timeout : TimeSpan with get, set
Public Property Timeout As TimeSpan

属性值

会话超时(以秒为单位)。 默认值为 20 分钟。

属性

示例

下面的代码示例演示如何获取 Timeout 属性。 请参阅类主题中的 SessionStateSection 代码示例,了解如何访问 对象 SessionStateSection

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

注解

属性 Timeout 不能设置为大于 525,601 分钟的值 (1 年) 。

适用于