共用方式為


AnonymousIdentificationSection.CookieTimeout 屬性

定義

取得或設定驗證到期之前的時間 (以分鐘為單位)。

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

屬性值

驗證到期之前的時間 (以分鐘為單位)。 預設值為 100000。

屬性

範例

下列程式碼範例示範如何存取 CookieTimeout 屬性。

// Get CookieTimeout.
TimeSpan cookieTimeout =
    anonymousIdentificationSection.CookieTimeout;
Console.WriteLine("Cookie timeout: {0}",
    cookieTimeout.ToString());
' Get CookieTimeout.
Dim cookieTimeout As TimeSpan = _
anonymousIdentificationSection.CookieTimeout
Console.WriteLine( _
"Cookie timeout: {0}", cookieTimeout.ToString())

備註

這個屬性可以設定為任意大值,但值在內部 CookieTimeout 限制為兩年的最大值。

適用於