次の方法で共有


RoleManagerSection.CookieTimeout プロパティ

定義

ロール名をキャッシュするために使用されるクッキーの有効期限が切れるまでの時間 (分) を取得または設定します。

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。 既定値は 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場合、CookieTimeoutfalseプロパティは無視されます。

適用対象

こちらもご覧ください