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