共用方式為


ActiveDirectoryMembershipUser.LastLoginDate 屬性

定義

在所有情況下都會擲回 NotSupportedException 例外狀況。

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

屬性值

DateTime

永遠擲回 NotSupportedException 例外狀況。

例外狀況

嘗試取得或設定 LastLoginDate 屬性。

範例

下列程式碼範例示範如何判斷成員資格使用者的基礎類型是否為 ActiveDirectoryMembershipUser ,並避免擲回 NotSupportedException 來存取 LastLoginDate 屬性。 如需執行範例所需的完整程式碼,請參閱類別概觀主題的 ActiveDirectoryMembershipUser 範例一節。

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

備註

類別 LastLoginDate 不支援 ActiveDirectoryMembershipUser 屬性。 嘗試取得或設定值一律會擲回 NotSupportedException

適用於