ProfileManager.Enabled Property

Definition

Gets a value indicating whether the user profile is enabled for the application.

C#
public static bool Enabled { get; }

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.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also