System.Web.Profile.ProfileProvider Class

Defines the contract that ASP.NET implements to provide profile services using custom profile providers.

See Also: ProfileProvider Members

Syntax

public abstract class ProfileProvider : System.Configuration.SettingsProvider

Remarks

ASP.NET profiles offer persistent storage and retrieval of user-specific properties. Profile property values and information are stored in a data source in a manner determined by the System.Web.Profile.ProfileProvider implementation. You can use the profile providers that are included with the .NET Framework (represented by the classes that derive from the System.Web.Profile.ProfileProvider abstract class), or you can implement your own provider by creating a new class that derives from System.Web.Profile.ProfileProvider.

There are two primary reasons for creating a custom profile provider.

The System.Web.Profile.ProfileProvider abstract class inherits from the System.Configuration.SettingsProvider abstract class, which inherits from the System.Configuration.Provider.ProviderBase abstract class. Classes that implement System.Web.Profile.ProfileProvider must also implement the required members of the System.Configuration.SettingsProvider and System.Configuration.Provider.ProviderBase abstract classes. For more information about implementing a profile provider, see Implementing a Profile Provider.

Requirements

Namespace: System.Web.Profile
Assembly: System.Web (in System.Web.dll)
Assembly Versions: 2.0.0.0
Since: .NET 2.0