1 write to attributeMapPasswordAnswer
System.Web (1)
Security\ADMembershipProvider.cs (1)
544attributeMapPasswordAnswer = GetAttributeMapping(config, "attributeMapPasswordAnswer", out maxLength);
11 references to attributeMapPasswordAnswer
System.Web (11)
Security\ADMembershipProvider.cs (11)
545if (attributeMapPasswordAnswer != null) 550attributesInUse.Add(attributeMapPasswordAnswer, null); 558if (attributeMapPasswordQuestion == null || attributeMapPasswordAnswer == null) 661if ((passwordAnswer != null) && (attributeMapPasswordAnswer == null)) 843userEntry.Properties[attributeMapPasswordAnswer].Value = encodedPasswordAnswer; 1025if ((newPasswordAnswer != null) && (attributeMapPasswordAnswer == null)) 1152if ((attributeMapPasswordAnswer != null) && (userEntry.Properties.Contains(attributeMapPasswordAnswer))) 1153userEntry.Properties[attributeMapPasswordAnswer].Clear(); 1156userEntry.Properties[attributeMapPasswordAnswer].Value = encodedPasswordAnswer; 1450string storedPasswordAnswer = Decrypt((string) PropertyManager.GetPropertyValue(userEntry, attributeMapPasswordAnswer));