1 override of FindProfilesByUserName
System.Web (1)
Profile\SqlProfileProvider.cs (1)
462public 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)
643ProfileInfoCollection coll = ProfileManager.Provider.FindProfilesByUserName(ProfileAuthenticationOption.All, _UserName, 0, 1, out totalRecords);
Profile\ProfileManager.cs (2)
176return Provider.FindProfilesByUserName(authenticationOption, usernameToMatch, 0, Int32.MaxValue, out totalRecords); 205return Provider.FindProfilesByUserName(authenticationOption, usernameToMatch, pageIndex, pageSize, out totalRecords);