HttpContext.Profile Property

Definition

Gets the ProfileBase object for the current user profile.

public:
 property System::Web::Profile::ProfileBase ^ Profile { System::Web::Profile::ProfileBase ^ get(); };
public System.Web.Profile.ProfileBase Profile { get; }
member this.Profile : System.Web.Profile.ProfileBase
Public ReadOnly Property Profile As ProfileBase

Property Value

A ProfileBase if the application configuration file contains a definition for the profile's properties; otherwise, null.

Remarks

A Profile property is used for persistent storage of structured data using a type-safe API. When a Profile property is accessed but no value is present, an empty instance is returned; null is not returned.

Applies to

See also