ProfileProvider::DeleteInactiveProfiles Method
When overridden in a derived class, deletes all user-profile data for profiles in which the last activity date occurred before the specified date.
Assembly: System.Web (in System.Web.dll)
public: virtual int DeleteInactiveProfiles( ProfileAuthenticationOption authenticationOption, DateTime userInactiveSinceDate ) abstract
Parameters
- authenticationOption
- Type: System.Web.Profile::ProfileAuthenticationOption
One of the ProfileAuthenticationOption values, specifying whether anonymous, authenticated, or both types of profiles are deleted.
- userInactiveSinceDate
- Type: System::DateTime
A DateTime that identifies which user profiles are considered inactive. If the LastActivityDate value of a user profile occurs on or before this date and time, the profile is considered inactive.
The DeleteInactiveProfiles method is used to remove unused profile data from the data source. Only data for the applicationName specified in the configuration file is removed. The authenticationOption parameter specifies whether only anonymous profiles, only authenticated profiles, or all profiles are searched. Profiles in which the LastActivityDate occurs on or before the specified userInactiveSinceDate parameter value are deleted.
The following code example shows the method signature for an implementation of the DeleteInactiveProfiles method. For an example of a full ProfileProvider implementation, see How to: Build and Run the Profile Provider Example.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.