SessionAuthenticationModule.SignedOut 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
使用者已登出之後發生。
public:
event EventHandler ^ SignedOut;
public event EventHandler SignedOut;
member this.SignedOut : EventHandler
Public Custom Event SignedOut As EventHandler
Public Event SignedOut As EventHandler
事件類型
範例
下列程式代碼顯示 ASP.NET Web 應用程式global.asax.cs檔案中實作之 事件的處理程式 SignedOut 。 您也必須將處理程式新增至 事件。 概觀主題會顯示 SessionAuthenticationModule 更完整的範例。
void SessionAuthenticationModule_SignedOut(object sender, EventArgs e)
{
System.Diagnostics.Trace.WriteLine("Handling SignedOut event");
}
備註
在叫用 方法之後DeleteSessionTokenCookie,從 SignOut 方法引發。
此事件不保證會針對每個會話呼叫。 例如,Cookie 可能會在用戶端刪除,在此情況下,永遠不會引發此事件,因為沒有用於刪除會話的伺服器端事件。