20 references to Provider
System.Web (20)
Profile\HttpProfileBase.cs (4)
414
ProfileProvider prov = hasLowTrust ? ProfileManager.
Provider
: null;
533
pps.ProviderInternal = ProfileManager.
Provider
; // Use default provider
640
if (_DatesRetrieved || ProfileManager.
Provider
== null)
643
ProfileInfoCollection coll = ProfileManager.
Provider
.FindProfilesByUserName(ProfileAuthenticationOption.All, _UserName, 0, 1, out totalRecords);
Profile\ProfileManager.cs (16)
48
return (
Provider
.DeleteProfiles(new string [] {username}) != 0);
73
return
Provider
.DeleteProfiles(profiles);
89
return
Provider
.DeleteProfiles(usernames);
97
return
Provider
.DeleteInactiveProfiles(authenticationOption, userInactiveSinceDate);
105
return
Provider
.GetNumberOfInactiveProfiles(authenticationOption, DateTime.Now.AddDays(1)); //
113
return
Provider
.GetNumberOfInactiveProfiles(authenticationOption, userInactiveSinceDate);
123
return
Provider
.GetAllProfiles(authenticationOption, 0, Int32.MaxValue, out totalRecords);
135
return
Provider
.GetAllProfiles(authenticationOption, pageIndex, pageSize, out totalRecords);
146
return
Provider
.GetAllInactiveProfiles(authenticationOption, userInactiveSinceDate, 0, Int32.MaxValue, out totalRecords);
159
return
Provider
.GetAllInactiveProfiles(authenticationOption, userInactiveSinceDate, pageIndex, pageSize, out totalRecords);
176
return
Provider
.FindProfilesByUserName(authenticationOption, usernameToMatch, 0, Int32.MaxValue, out totalRecords);
205
return
Provider
.FindProfilesByUserName(authenticationOption, usernameToMatch, pageIndex, pageSize, out totalRecords);
224
return
Provider
.FindInactiveProfilesByUserName(authenticationOption, usernameToMatch, userInactiveSinceDate, 0, Int32.MaxValue, out totalRecords);
254
return
Provider
.FindInactiveProfilesByUserName(authenticationOption, usernameToMatch, userInactiveSinceDate, pageIndex, pageSize, out totalRecords);
281
return
Provider
.ApplicationName;
284
Provider
.ApplicationName = value;