Aracılığıyla paylaş


ActiveDirectoryMembershipUser.LastActivityDate Özellik

Tanım

Her durumda bir NotSupportedException özel durum oluşturur.

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

Özellik Değeri

DateTime

Her zaman bir NotSupportedException özel durum oluşturur.

Özel durumlar

özelliğini alma veya ayarlama LastActivityDate 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 LastActivityDate 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

LastActivityDate ö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