WebSecurity - Logout() 方法
WebSecurity 对象 Logout() 方法用于注销当前用户
语法
Logout()
范例
C#
// 退出登录 WebSecurity.Logout(); // 跳转回主页 Response.Redirect("~/");
VB
'退出登录 WebSecurity.Logout() '跳转回主页 Response.Redirect("~/")
参数
无
返回值
无
错误和异常
在下面的情况下,任何对 WebSecurity 对象的访问将抛出一个 InvalidOperationException 异常
- InitializeDatabaseConnection() 方法没有被调用
- SimpleMembership 没有初始化(或者在网站配置中禁用)
说明
当用户已登录,ASP.NET 在 cookie 中设置一个身份验证令牌,让 ASP.NET 知道用户已登录的后续请求
Logout() 方法移除身份验证令牌,注销用户
命名空间
WebMatrix.WebData
Assembly
WebMatrix.WebData.dll