<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 객체