FormsAuthenticationConfiguration.Timeout 属性

定义

获取或设置身份验证超时。

public:
 property TimeSpan Timeout { TimeSpan get(); void set(TimeSpan value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.TimeSpanMinutesConverter))]
[System.Configuration.ConfigurationProperty("timeout", DefaultValue="00:30: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.TimeSpanMinutesConverter))>]
[<System.Configuration.ConfigurationProperty("timeout", DefaultValue="00:30: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

属性值

TimeSpan

以分钟为单位的时间量,经过该时间间隔后身份验证便会过期。 默认值为 30 分钟。

属性

示例

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

  // Get the current Timeout.
  System.TimeSpan currentTimeout = 
      formsAuthentication.Timeout;

  // Set the Timeout.
  formsAuthentication.Timeout = 
      System.TimeSpan.FromMinutes(10);
' Get the current Timeout.
  Dim currentTimeout As System.TimeSpan = _
  formsAuthentication.Timeout

' Set the Timeout.
  formsAuthentication.Timeout = _
  System.TimeSpan.FromMinutes(10)

适用于

另请参阅