AnonymousIdentificationSection.CookieTimeout Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the amount of time, in minutes, after which the authentication expires.
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
Property Value
The amount of time, in minutes, after which the authentication expires. The default value is 100000.
- Attributes
Examples
The following code example shows how to access the CookieTimeout property.
// 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())
Remarks
This property can be set to an arbitrarily large value, but internally the CookieTimeout value is limited to a maximum value of two years.
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET