1 write to attributeMapFailedPasswordAnswerCount
System.Web (1)
Security\ADMembershipProvider.cs (1)
515attributeMapFailedPasswordAnswerCount = GetAttributeMapping(config, "attributeMapFailedPasswordAnswerCount", out maxLength /* ignored */);
13 references to attributeMapFailedPasswordAnswerCount
System.Web (13)
Security\ADMembershipProvider.cs (13)
516if (attributeMapFailedPasswordAnswerCount != null) 517attributesInUse.Add(attributeMapFailedPasswordAnswerCount, null); 527if (attributeMapFailedPasswordAnswerCount == null || attributeMapFailedPasswordAnswerTime == null || 1135userEntry.Properties[attributeMapFailedPasswordAnswerCount].Value = 0; 1563userEntry.Properties[attributeMapFailedPasswordAnswerCount].Value = 0; 2447searcher.PropertiesToLoad.Add(attributeMapFailedPasswordAnswerCount); 2464if ((EnablePasswordReset) && res.Properties.Contains(attributeMapFailedPasswordAnswerCount)) 2465resetBadPasswordAnswerAttributes = ((int) PropertyManager.GetSearchResultPropertyValue(res, attributeMapFailedPasswordAnswerCount) > 0); 2514searcher.PropertiesToLoad.Add(attributeMapFailedPasswordAnswerCount); 2647if (userEntry.Properties.Contains(attributeMapFailedPasswordAnswerCount)) 2648currentBadPasswordAttemptCount = (int) PropertyManager.GetPropertyValue(userEntry, attributeMapFailedPasswordAnswerCount); 2662userEntry.Properties[attributeMapFailedPasswordAnswerCount].Value = badPasswordAttemptCount; 2682userEntry.Properties[attributeMapFailedPasswordAnswerCount].Value = 0;