ProfileEventArgs.Profile Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera lub ustawia profil użytkownika dla bieżącego żądania.
public:
property System::Web::Profile::ProfileBase ^ Profile { System::Web::Profile::ProfileBase ^ get(); void set(System::Web::Profile::ProfileBase ^ value); };
public System.Web.Profile.ProfileBase Profile { get; set; }
member this.Profile : System.Web.Profile.ProfileBase with get, set
Public Property Profile As ProfileBase
Wartość właściwości
Profil użytkownika do użycia dla bieżącego żądania. Wartość domyślna to null
.
Przykłady
Poniższy przykład kodu przedstawia Personalize zdarzenie zadeklarowane w pliku Global.asax dla aplikacji. Kod zdarzenia ładuje profil użytkownika na podstawie członkostwa w rolach.
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
Uwagi
Możesz użyć Profile właściwości podczas Personalize zdarzenia, aby określić niestandardowy profil użytkownika. Jeśli po zakończeniu PersonalizeProfileEventArgs zdarzenia parametr ProfileEventHandler obiektu ma właściwość Profile ustawioną na wartość null
inną niż , ProfileModule parametr używa wartości Profile właściwości w bieżącym HttpContextobiekcie .
Uwaga
Właściwość ProfileModule nie ustawia Profile właściwości zdarzenia Personalize . Wartość ProfileModule właściwości jest pobierana Profile tylko po zakończeniu Personalize kodu w zdarzeniu.
ProfileEventArgs.Profile Jeśli właściwość nie jest jawnie ustawiana przez kod aplikacji podczas Personalize zdarzenia, Profile wartość właściwości będzie równa null
.