IHttpSessionState.Abandon 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
結束目前的工作階段。
public:
void Abandon();
public void Abandon ();
abstract member Abandon : unit -> unit
Public Sub Abandon ()
範例
下列程式代碼範例會 Abandon 實作 介面的 IHttpSessionState 方法。 程式代碼範例會複製 類別的行為HttpSessionStateContainer,因為它會在呼叫 方法時Abandon加入IsAbandoned設定為 true
的屬性。 屬性 IsAbandoned 會在事件期間 ReleaseRequestState 由會話狀態模組檢查,以判斷會話是否已放棄,而會話狀態模組會清除會話數據並執行 Session_OnEnd 事件。
//
// Abandon marks the session as abandoned. The IsAbandoned property is used by the
// session state module to perform the abandon work during the ReleaseRequestState event.
//
public void Abandon()
{
pAbandon = true;
}
public bool IsAbandoned
{
get { return pAbandon; }
}
'
' Abandon marks the session as abandoned. The IsAbandoned property is used by the
' session state module to perform the abandon work during the ReleaseRequestState event.
'
Public Sub Abandon() Implements IHttpSessionState.Abandon
pAbandon = True
End Sub
Public ReadOnly Property IsAbandoned As Boolean
Get
Return pAbandon
End Get
End Property
備註
方法 Abandon 可用來清除會話數據,並引發 ASP.NET 應用程式之 Global.asax 檔案中定義的 Session_OnEnd 事件。