AnonymousIdentificationSection.CookieTimeout Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
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.