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