Aracılığıyla paylaş


ActiveDirectoryMembershipUser.LastLoginDate Özellik

Tanım

Her durumda bir NotSupportedException özel durum oluşturur.

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

Özellik Değeri

DateTime

Her zaman bir NotSupportedException özel durum oluşturur.

Özel durumlar

özelliğini alma veya ayarlama LastLoginDate girişimleri.

Örnekler

Aşağıdaki kod örneği, üyelik kullanıcısının ActiveDirectoryMembershipUsertemel alınan türünün olup olmadığının nasıl belirleneceğini ve özelliğine erişmek LastLoginDate için bir NotSupportedException oluşturmanın nasıl önleneceğini gösterir. Örneği çalıştırmak için gereken kodun tamamı için sınıfa genel bakış konusunun ActiveDirectoryMembershipUser Örnek bölümüne bakın.

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

Açıklamalar

LastLoginDate özelliği sınıfı tarafından ActiveDirectoryMembershipUser desteklenmiyor. Değerini almaya veya ayarlamaya çalıştığınızda her zaman bir NotSupportedExceptionoluşturur.

Şunlara uygulanır