从对象模型而不是数据库获取 FailedPasswordAttemptCount 的值

发布于 2024-10-18 15:00:45 字数 133 浏览 1 评论 0原文

我试图从 ASP.NET 内置对象中获取 FailedPasswordAttemptCount ,但找不到,有什么方法可以在不创建新的storedProc 的情况下获取该值吗?

如果这个问题是多余的,请原谅。

提前致谢。

I am trying to get the FailedPasswordAttemptCount from the ASP.NET built in objects and I am not able to find one, is there any way I can get this value without creating a new storedProc?

Excuse me if the question is redundant.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦幻的心爱 2024-10-25 15:00:45

我发现内置 SqlMembershipProvider 使用此属性的唯一一个功能是:

private void GetPasswordWithFormat(string username, bool updateLastLoginActivityDate, out int status, out string password, out int passwordFormat, out string passwordSalt, out int failedPasswordAttemptCount, out int failedPasswordAnswerAttemptCount, out bool isApproved, out DateTime lastLoginDate, out DateTime lastActivityDate)

它是私有的。因此,最好的解决方案是覆盖现有的解决方案,并使用添加方法推出自己的方法来收集所需的数据,例如:

public class MySqlMembershipProvider : SqlMembershipProvider
{
    public int GetFailedPasswordAttemptCount (Guid userId)
    {
        // SELECT FailedPasswordAttemptCount FROM aspnet_Membership WHERE UserId = UserId
    }
}

用法:

var count = ((MySqlMembershipProvider)System.Web.Security.Membership.Provider).GetFailedPasswordAttemptCount(...);

The only one function of buil-in SqlMembershipProvider uses this property I found is:

private void GetPasswordWithFormat(string username, bool updateLastLoginActivityDate, out int status, out string password, out int passwordFormat, out string passwordSalt, out int failedPasswordAttemptCount, out int failedPasswordAnswerAttemptCount, out bool isApproved, out DateTime lastLoginDate, out DateTime lastActivityDate)

it's private. Thus the best solution is to override the existed one, and roll your own with addition method to gather the data you need, e.g.:

public class MySqlMembershipProvider : SqlMembershipProvider
{
    public int GetFailedPasswordAttemptCount (Guid userId)
    {
        // SELECT FailedPasswordAttemptCount FROM aspnet_Membership WHERE UserId = UserId
    }
}

Usage:

var count = ((MySqlMembershipProvider)System.Web.Security.Membership.Provider).GetFailedPasswordAttemptCount(...);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文