Udostępnij za pośrednictwem


ActiveDirectoryMembershipUser.LastLoginDate Właściwość

Definicja

Zgłasza NotSupportedException wyjątek we wszystkich przypadkach.

public:
 virtual property DateTime LastLoginDate { DateTime get(); void set(DateTime value); };
public override DateTime LastLoginDate { get; set; }
member this.LastLoginDate : DateTime with get, set
Public Overrides Property LastLoginDate As DateTime

Wartość właściwości

DateTime

Zawsze zgłasza wyjątek NotSupportedException .

Wyjątki

każda LastLoginDate próba pobrania lub ustawienia właściwości.

Przykłady

W poniższym przykładzie kodu pokazano, jak określić, czy bazowym typem użytkownika członkostwa jest ActiveDirectoryMembershipUser, i aby uniknąć zgłaszania NotSupportedException elementu w celu uzyskania LastLoginDate dostępu do właściwości. Pełny kod wymagany do uruchomienia przykładu można znaleźć w sekcji Przykład w ActiveDirectoryMembershipUser temacie Omówienie klasy.

if (user is ActiveDirectoryMembershipUser)
{
  lastLoginDate.Text = "Not available";
  lastActivityDate.Text = "Not available";
}
else
{
  lastLoginDate.Text = user.LastLoginDate.ToShortDateString();
  lastActivityDate.Text = user.LastActivityDate.ToShortDateString();
}
If TypeOf (user) Is ActiveDirectoryMembershipUser Then
  lastLoginDate.Text = "Not available"
  lastActivityDate.Text = "Not available"
Else
  lastLoginDate.Text = user.LastLoginDate.ToString()
  lastActivityDate.Text = user.LastActivityDate.ToString()
End If

Uwagi

Właściwość LastLoginDate nie jest obsługiwana przez klasę ActiveDirectoryMembershipUser . Próba pobrania lub ustawienia wartości będzie zawsze zgłaszać NotSupportedExceptionwartość .

Dotyczy