ProfileManager.Enabled Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value indicating whether the user profile is enabled for the application.
public:
static property bool Enabled { bool get(); };
public static bool Enabled { get; }
static member Enabled : bool
Public Shared ReadOnly Property Enabled As Boolean
Property Value
true
if the user profile is enabled; otherwise, false
. The default is false
.
Examples
The following code example shows the profile element in the system.web section of the Web.config file for an ASP.NET application where the user profile has been enabled.
<profile enabled="true" defaultProvider="SqlProvider">
<providers>
<add name="SqlProvider"
type="System.Web.Profile.SqlProfileProvider"
connectionStringName="SqlServices"
applicationName="MyApplication" />
</providers>
</profile>
Remarks
The user profile is enabled for an application using the enabled
attribute of the profile configuration element.