ProfileEventHandler Delegate
Represents the method that will handle the Personalize event of a ProfileModule.
Assembly: System.Web (in System.Web.dll)
Parameters
- sender
- Type: System::Object
The ProfileModule that raised the Personalize event.
- e
- Type: System.Web.Profile::ProfileEventArgs
A ProfileEventArgs that contains the event data.
The ProfileEventHandler delegate is defined for the Personalize event of the ProfileModule class. You can access the Personalize event of the ProfileModule class in the Global.asax file for your ASP.NET application using the Profile_Personalize global event, as shown in the example for this topic.
You can use the Personalize event to specify a custom user profile. If the Profile property of the ProfileEventArgs parameter specified for the Personalize event's ProfileEventHandler is set to a non-null value when the Personalize event completes, then the ProfileModule will use that value for the Profile property of the current HttpContext.
The following code example shows the Personalize event declared in the Global.asax file for an application. The event code loads a user profile for a user based on role membership.
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.