共用方式為


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)

適用於

另請參閱