共用方式為


RoleManagerSection.CookieTimeout 屬性

定義

取得或設定用於快取存放角色名稱的 Cookie 還有多少分鐘之後就算到期。

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

屬性值

TimeSpan

TimeSpan,表示用於快取存放角色名稱的 Cookie 還有多少分鐘之後就算到期。 預設值為 30 分鐘。

屬性

範例

下列程式碼範例示範如何使用 CookieTimeout 屬性。 此程式碼範例是針對 類別提供的較大範例的 RoleManagerSection 一部分。

// Display CookieTimeout property.
Console.WriteLine("CookieTimeout: {0}", configSection.CookieTimeout);
' Display CookieTimeout property.
Console.WriteLine("CookieTimeout: {0}", configSection.CookieTimeout)

備註

屬性 CookieTimeout 會設定值,指定角色名稱 Cookie 到期之前的分鐘數。 預設值是 30 分鐘。 CookieSlidingExpiration如果 屬性為 false ,則會 CookieTimeout 忽略 屬性。

適用於

另請參閱