WebSecurity IsConfirmed 方法

websecurity - isconfirmed()

websecurity 对象 websecurity 对象

定义

isconfirmed() 方法返回一个指示指定用户是否已被确认的值。

c# 和 vb 语法

websecurity.isconfirmed(username);

参数

参数 类型 描述
username string 用户名

返回值

类型 描述
boolean 如果用户已被确认,则返回 true,否则返回 false。

错误和异常

在下面的情况下,任何对 websecurity 对象的访问将抛出一个 invalidoperationexception:

  • initializedatabaseconnection() 方法没有被调用
  • simplemembership 没有初始化(或者在网站配置中禁用)

备注

isconfirmed() 方法检查由 username 参数标识的用户帐户。

如果会员已被确认(用户通过点击电子邮件链接进行帐户确认),则该方法返回 true。

如果注册未被确认,则用户无法登录。

技术数据

名称
namespace webmatrix.webdata
assembly webmatrix.webdata.dll

websecurity 对象 websecurity 对象
相关文章