Aracılığıyla paylaş


AnonymousIdentificationSection.CookieTimeout Özellik

Tanım

Kimlik doğrulamasının süresi dolduğunda dakika cinsinden süreyi alır veya ayarlar.

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

Özellik Değeri

Kimlik doğrulamasının süresi dolduğunda dakika cinsinden süre. Varsayılan değer 100000'dir.

Öznitelikler

Örnekler

Aşağıdaki kod örneği özelliğine nasıl eriş yapılacağını CookieTimeout gösterir.

// 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())

Açıklamalar

Bu özellik rastgele olarak büyük bir değere ayarlanabilir, ancak dahili olarak CookieTimeout değer iki yıllık maksimum değerle sınırlıdır.

Şunlara uygulanır