本文整理汇总了C#中mojoPortal.Business.SiteUser.LockoutAccount方法的典型用法代码示例。如果您正苦于以下问题:C# SiteUser.LockoutAccount方法的具体用法?C# SiteUser.LockoutAccount怎么用?C# SiteUser.LockoutAccount使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mojoPortal.Business.SiteUser
的用法示例。
在下文中一共展示了SiteUser.LockoutAccount方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: btnLockUser_Click
protected void btnLockUser_Click(object sender, EventArgs e)
{
if (this.userID > -1)
{
SiteUser user = new SiteUser(siteSettings, this.userID);
user.LockoutAccount();
}
WebUtils.SetupRedirect(this, Request.RawUrl);
return;
}
示例2: GetPassword
public override string GetPassword(string userName, string passwordAnswer)
{
/*
* Takes, as input, a user name and a password answer and returns that user's password.
* If the user name is not valid, GetPassword throws a ProviderException. Before retrieving
* a password, GetPassword verifies that EnablePasswordRetrieval is true.
* If EnablePasswordRetrieval is false, GetPassword throws a NotSupportedException.
* If EnablePasswordRetrieval is true but the password format is hashed, GetPassword
* throws a ProviderException since hashed passwords cannot, by definition, be retrieved.
* A membership provider should also throw a ProviderException from Initialize if
* EnablePasswordRetrieval is true but the password format is hashed. GetPassword also
* checks the value of the RequiresQuestionAndAnswer property before retrieving a password.
* If RequiresQuestionAndAnswer is true, GetPassword compares the supplied password
* answer to the stored password answer and throws a MembershipPasswordException if
* the two don't match. GetPassword also throws a MembershipPasswordException if the
* user whose password is being retrieved is currently locked out.
*/
SiteSettings siteSettings = GetSiteSettings();
if (!siteSettings.AllowPasswordRetrieval)
{
throw new MojoMembershipException(
ResourceHelper.GetMessageTemplate("PasswordRetrievalNotEnabledMessage.config")
);
}
if ((userName != null) && (siteSettings != null))
{
SiteUser siteUser = new SiteUser(siteSettings, userName);
if (siteUser.UserId > -1)
{
if (siteUser.IsLockedOut)
{
throw new MembershipPasswordException(
ResourceHelper.GetMessageTemplate("UserAccountLockedMessage.config"));
}
if (siteUser.IsDeleted)
{
throw new MembershipPasswordException(
ResourceHelper.GetMessageTemplate("UserNotFoundMessage.config"));
}
bool okToGetPassword = false;
if (siteSettings.RequiresQuestionAndAnswer)
{
if ((passwordAnswer != null) && (PasswordAnswerIsMatch(passwordAnswer, siteUser.PasswordAnswer)))
{
okToGetPassword = true;
}
else
{
if (siteSettings.MaxInvalidPasswordAttempts > 0)
{
siteUser.IncrementPasswordAnswerAttempts(siteSettings);
if (WebConfigSettings.LockAccountOnMaxPasswordAnswerTries)
{
if (siteUser.FailedPasswordAnswerAttemptCount >= siteSettings.MaxInvalidPasswordAttempts)
{
siteUser.LockoutAccount();
}
}
}
}
}
else
{
okToGetPassword = true;
}
if(okToGetPassword)
{
if (siteSettings.RequirePasswordChangeOnResetRecover)
{
siteUser.MustChangePwd = true;
siteUser.Save();
}
switch(PasswordFormat)
{
case MembershipPasswordFormat.Clear:
return siteUser.Password;
case MembershipPasswordFormat.Encrypted:
try
{
if (siteUser.PasswordSalt.Length > 0)
{
return UnencodePassword(siteUser.Password, MembershipPasswordFormat.Encrypted).Replace(siteUser.PasswordSalt, string.Empty);
}
else
{
return UnencodePassword(siteUser.Password, MembershipPasswordFormat.Encrypted);
}
//.........这里部分代码省略.........