FormsAuthenticationConfiguration.Timeout プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
認証タイムアウト期間を取得または設定します。
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
プロパティ値
認証の有効期限が切れてからの時間 (分単位)。 既定値は 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)