WebSecurity 属性 - HasUserId
WebSecurity 对象
定义
HasUserId 属性是一个布尔值,指示当前用户在 WebSecurity 数据库中是否具有用户 ID。
如果当前用户具有用户 ID,则该属性值是一个布尔值 true。默认是 false。
C# 和 VB 语法
WebSecurity.HasUserId
实例
实例 C#
@{
bool value;
value=WebSecurity.HasUserId;
}
<p>It is @value that the user has an ID</p>
bool value;
value=WebSecurity.HasUserId;
}
<p>It is @value that the user has an ID</p>
实例 VB
@Code
Dim value as Boolean
value=WebSecurity.HasUserId
End Code
<p>It is @value that the user has an ID</p>
Dim value as Boolean
value=WebSecurity.HasUserId
End Code
<p>It is @value that the user has an ID</p>
备注
HasUserID 属性是只读的。它不能通过代码更改。
HasUserId 属性只验证用户是否在 WebSecurity 数据库中具有 ID。不验证用户帐户是否有效(被确认),或者用户是否已登录。
请使用 IsConfirmed() 方法来验证用户是否已被确认。
请使用 IsAuthenticated 属性来验证用户是否已登录。
错误和异常
在下面的情况下,任何对 WebSecurity 对象的访问将抛出一个 InvalidOperationException:
- InitializeDatabaseConnection() 方法没有被调用
- SimpleMembership 没有初始化(或者在网站配置中禁用)
技术数据
名称 | 值 |
---|---|
Namespace | WebMatrix.WebData |
Assembly | WebMatrix.WebData.dll |
WebSecurity 对象
点我分享笔记