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