RoleManagerSection.CookieTimeout プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ロール名をキャッシュするために使用されるクッキーの有効期限が切れるまでの時間 (分) を取得または設定します。
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。 既定値は 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
プロパティは無視されます。