<WebSecurity社オブジェクト
定義
Logout()メソッドは、現在のユーザーをログアウトします。
C#とVBの構文
Logout()
例
例のC#
// Log out the current user
WebSecurity.Logout();
//
Redirect back to the homepage
Response.Redirect("~/");
例VB
' Log out the current user
WebSecurity.Logout()
'
Redirect back to the homepage
Response.Redirect("~/")
パラメーター
なし。
戻り値
なし。
エラーと例外
WebSecurity社のオブジェクトへのアクセスは、InvalidOperationExceptionがある場合にスローされます。
- InitializeDatabaseConnection()メソッドが呼び出されていません
- SimpleMembershipが初期化されていない(or disabled in the website configuration)
備考
ユーザーがログインしている場合は、ASP.NETは、ASP.NETは、ユーザーがログインされた後続の要求に知ることができますクッキーに認証トークンを設定します。
Logout()メソッドは、ユーザをログアウトさせる効果を有する認証トークンを除去します。
技術データ
名 | 値 |
---|---|
名前空間 | WebMatrix.WebData |
アセンブリ | WebMatrix.WebData.dll |
<WebSecurity社オブジェクト