WebSecurity 属性 - IsAuthenticated
WebSecurity 对象 IsAuthenticated 属性是一个布尔值,指示当前用户是否已通过身份验证(已登录)
如果当前用户已通过身份验证,则该属性值是一个布尔值 true ,否则是 false
语法
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 没有初始化(或者在网站配置中禁用)
命名空间
WebMatrix.WebData
Assembly
WebMatrix.WebData.dll