최신 웹 개발 튜토리얼
 

WebSecurity 속성 - IsAuthenticated는


<WebSecurity 객체

정의

IsAuthenticated는 속성은 현재 사용자가 인증 여부를 나타내는 부울 값 (logged in) .

현재 사용자가 인증 된 경우에는 속성 값을, 그렇지 않으면 거짓 부울 참이다.


C # 및 VB 구문

WebSecurity.IsAuthenticated

실시 예 번호 C

if (!WebSecurity.IsAuthenticated)
{
Response.Redirect("~/Account/Login");
}

예 VB

if !WebSecurity.IsAuthenticated then
  Response.Redirect("~/Account/Login")
end if

비고

IsAuthenticated는 속성은 읽기 전용입니다. 이 코드에 의해 변경 될 수 없습니다.


오류 및 예외

WebSecurity 개체에 액세스하면 InvalidOperationException이 경우가 발생합니다 :

  • InitializeDatabaseConnection() 메서드가 호출되지 않았습니다
  • SimpleMembership가 초기화되지 않습니다 (or disabled in the website configuration)

기술 데이터

이름
네임 스페이스 WebMatrix.WebData
어셈블리 WebMatrix.WebData.dll

<WebSecurity 객체