1 instantiation of ProfileInfoCollection
System.Web (1)
Profile\SqlProfileProvider.cs (1)
518ProfileInfoCollection profiles = new ProfileInfoCollection();
22 references to ProfileInfoCollection
System.Web (22)
Profile\HttpProfileBase.cs (1)
643ProfileInfoCollection coll = ProfileManager.Provider.FindProfilesByUserName(ProfileAuthenticationOption.All, _UserName, 0, 1, out totalRecords);
Profile\ProfileManager.cs (9)
54public static int DeleteProfiles(ProfileInfoCollection profiles) 120public static ProfileInfoCollection GetAllProfiles(ProfileAuthenticationOption authenticationOption) 130public static ProfileInfoCollection GetAllProfiles(ProfileAuthenticationOption authenticationOption, 142public static ProfileInfoCollection GetAllInactiveProfiles(ProfileAuthenticationOption authenticationOption, 153public static ProfileInfoCollection GetAllInactiveProfiles(ProfileAuthenticationOption authenticationOption, 165public static ProfileInfoCollection FindProfilesByUserName(ProfileAuthenticationOption authenticationOption, 182public static ProfileInfoCollection FindProfilesByUserName (ProfileAuthenticationOption authenticationOption, 212public static ProfileInfoCollection FindInactiveProfilesByUserName(ProfileAuthenticationOption authenticationOption, 230public static ProfileInfoCollection FindInactiveProfilesByUserName(ProfileAuthenticationOption authenticationOption,
Profile\ProfileProvider.cs (5)
28public abstract int DeleteProfiles (ProfileInfoCollection profiles); 34public abstract ProfileInfoCollection GetAllProfiles (ProfileAuthenticationOption authenticationOption, int pageIndex, int pageSize, out int totalRecords); 35public abstract ProfileInfoCollection GetAllInactiveProfiles (ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate, int pageIndex, int pageSize, out int totalRecords); 36public abstract ProfileInfoCollection FindProfilesByUserName (ProfileAuthenticationOption authenticationOption, string usernameToMatch, int pageIndex, int pageSize, out int totalRecords); 37public abstract ProfileInfoCollection FindInactiveProfilesByUserName(ProfileAuthenticationOption authenticationOption, string usernameToMatch, DateTime userInactiveSinceDate, int pageIndex, int pageSize, out int totalRecords);
Profile\SqlProfileProvider.cs (7)
271public override int DeleteProfiles(ProfileInfoCollection profiles) 446public override ProfileInfoCollection GetAllProfiles(ProfileAuthenticationOption authenticationOption, int pageIndex, int pageSize, out int totalRecords) 454public override ProfileInfoCollection GetAllInactiveProfiles(ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate, int pageIndex, int pageSize, out int totalRecords) 462public override ProfileInfoCollection FindProfilesByUserName(ProfileAuthenticationOption authenticationOption, string usernameToMatch, int pageIndex, int pageSize, out int totalRecords) 472public override ProfileInfoCollection FindInactiveProfilesByUserName(ProfileAuthenticationOption authenticationOption, string usernameToMatch, DateTime userInactiveSinceDate, int pageIndex, int pageSize, out int totalRecords) 487private ProfileInfoCollection GetProfilesForQuery(SqlParameter [] args, ProfileAuthenticationOption authenticationOption, int pageIndex, int pageSize, out int totalRecords) 518ProfileInfoCollection profiles = new ProfileInfoCollection();