1 write to attributeMapEmail
System.Web (1)
Security\ADMembershipProvider.cs (1)
481attributeMapEmail = attrMapping;
16 references to attributeMapEmail
System.Web (16)
Security\ADMembershipProvider.cs (16)
485attributesInUse.Add(attributeMapEmail, null); 836userEntry.Properties[attributeMapEmail].Value = email; 1666if (userEntry.Properties.Contains(attributeMapEmail)) 1667userEntry.Properties[attributeMapEmail].Clear(); 1674userEntry.Properties[attributeMapEmail].Value = email; 2019searcher.Filter = "(&(objectCategory=person)(objectClass=user)(" + attributeMapUsername + "=*)(" + attributeMapEmail + "=" + GetEscapedFilterValue(email) +"))"; 2021searcher.Filter = "(&(objectCategory=person)(objectClass=user)(" + attributeMapUsername + "=*)(!(" + attributeMapEmail + "=" +"*)))"; 2258filter = "(" + attributeMapUsername + "=*)(" + attributeMapEmail + "=" + GetEscapedFilterValue(emailToMatch, false) +")"; 2260filter = "(" + attributeMapUsername + "=*)(!(" + attributeMapEmail + "=" +"*))"; 2261return FindUsers(containerEntry, filter, attributeMapEmail, pageIndex, pageSize, out totalRecords); 2427searcher.PropertiesToLoad.Add(attributeMapEmail); 2497searcher.PropertiesToLoad.Add(attributeMapEmail); 2699string email = (res.Properties.Contains(attributeMapEmail)) ? (string) res.Properties[attributeMapEmail][0] : null; 3098searcher.Filter = "(&(objectCategory=person)(objectClass=user)(" + attributeMapUsername + "=*)(" + attributeMapEmail + "=" + GetEscapedFilterValue(email) + ")(!(" + GetEscapedRdn("cn=" + GetEscapedFilterValue(username)) + ")))"; 3100searcher.Filter = "(&(objectCategory=person)(objectClass=user)(" + attributeMapUsername + "=*)(" + attributeMapEmail + "=" + GetEscapedFilterValue(email) + "))";