ProfileModule.Personalize Evento
Definição
Ocorre antes da criação do perfil do usuário.Occurs before the user profile is created.
public:
event System::Web::Profile::ProfileEventHandler ^ Personalize;
public event System.Web.Profile.ProfileEventHandler Personalize;
member this.Personalize : System.Web.Profile.ProfileEventHandler
Public Custom Event Personalize As ProfileEventHandler
Tipo de evento
Exemplos
O exemplo de código a seguir mostra o Personalize evento declarado no arquivo global. asax para um aplicativo.The following code example shows the Personalize event declared in the Global.asax file for an application. O código do evento carrega um perfil de usuário para um usuário com base na associação de função.The event code loads a user profile for a user based on role membership.
public void Profile_Personalize(object sender, ProfileEventArgs args)
{
ProfileCommon userProfile;
if (User == null) { return; }
userProfile = (ProfileCommon)ProfileBase.Create(User.Identity.Name);
if (User.IsInRole("Administrators"))
userProfile = userProfile.GetProfile("Administrator");
else
if (User.IsInRole("Users"))
userProfile = userProfile.GetProfile("User");
else
userProfile = userProfile.GetProfile("Guest");
if (userProfile != null)
args.Profile = userProfile;
}
Public Sub Profile_Personalize(sender As Object, args As ProfileEventArgs)
Dim userProfile As ProfileCommon
If User Is Nothing Then Return
userProfile = CType(ProfileBase.Create(User.Identity.Name), ProfileCommon)
If User.IsInRole("Administrators") Then
userProfile = userProfile.GetProfile("Administrator")
Else
If User.IsInRole("Users") Then
userProfile = userProfile.GetProfile("User")
Else
userProfile = userProfile.GetProfile("Guest")
End If
End If
If Not userProfile Is Nothing Then _
args.Profile = userProfile
End Sub
Comentários
O Personalize evento é gerado durante o HttpApplication.AcquireRequestState evento.The Personalize event is raised during the HttpApplication.AcquireRequestState event. Você pode acessar o Personalize evento da ProfileModule classe no arquivo global. asax para seu aplicativo ASP.NET usando o Profile_Personalize evento global, conforme mostrado no exemplo para este tópico.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.
Você pode usar o Personalize evento para especificar um perfil de usuário personalizado.You can use the Personalize event to specify a custom user profile. Se o ProfileEventArgs.Profile valor da propriedade especificado para o ProfileEventHandler manipulador de eventos para o Personalize evento for definido como um valor que não é null quando o Personalize evento terminar, o ProfileModule usará o valor especificado da ProfileEventArgs.Profile propriedade como o valor da Profile Propriedade do atual HttpContext .If the ProfileEventArgs.Profile property value specified for the ProfileEventHandler event handler for the Personalize event is set to a value that is not null when the Personalize event ends, then the ProfileModule will use the specified value of the ProfileEventArgs.Profile property as the value of the Profile property of the current HttpContext.