CookieHandler.PersistentSessionLifetime 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
永續性工作階段的存留期。 如果是零,則永遠使用暫時性工作階段。
public:
virtual property Nullable<TimeSpan> PersistentSessionLifetime { Nullable<TimeSpan> get(); void set(Nullable<TimeSpan> value); };
public virtual TimeSpan? PersistentSessionLifetime { get; set; }
member this.PersistentSessionLifetime : Nullable<TimeSpan> with get, set
Public Overridable Property PersistentSessionLifetime As Nullable(Of TimeSpan)
屬性值
工作階段存留期。 預設為 null
。
例外狀況
已指定小於零的值。
備註
持續性會話的票證會儲存在檔案型Cookie中,這表示登入會話可能會在網頁瀏覽器關閉並重新開啟之後繼續。
這個屬性是用來設定 HttpCookie.Expires 屬性。
屬性可以藉由在組態中的<cookieHandler>元素上指定 persistentSessionLifetime
屬性來初始化。