1 override of FindProfilesByUserName
System.Web (1)
Profile\SqlProfileProvider.cs (1)
462
public override ProfileInfoCollection
FindProfilesByUserName
(ProfileAuthenticationOption authenticationOption, string usernameToMatch, int pageIndex, int pageSize, out int totalRecords)
3 references to FindProfilesByUserName
System.Web (3)
Profile\HttpProfileBase.cs (1)
643
ProfileInfoCollection coll = ProfileManager.Provider.
FindProfilesByUserName
(ProfileAuthenticationOption.All, _UserName, 0, 1, out totalRecords);
Profile\ProfileManager.cs (2)
176
return Provider.
FindProfilesByUserName
(authenticationOption, usernameToMatch, 0, Int32.MaxValue, out totalRecords);
205
return Provider.
FindProfilesByUserName
(authenticationOption, usernameToMatch, pageIndex, pageSize, out totalRecords);