ActiveDirectoryMembershipUser.LastActivityDate 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
모든 경우에 NotSupportedException 예외를 throw합니다.
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
속성 값
항상 NotSupportedException 예외를 throw합니다.
예외
LastActivityDate 속성을 가져오거나 설정하려고 한 경우
예제
다음 코드 예제에는 멤버 자격 사용자의 기본 형식 인지 확인 하는 방법을 보여 줍니다. ActiveDirectoryMembershipUser, 및 throw 되지 않도록 하는 NotSupportedException 에 액세스 하기 위한는 LastActivityDate 속성. 예제를 실행 하는 데 필요한 전체 코드의 예제 섹션을 참조 하세요.를 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
설명
합니다 LastActivityDate 속성에서 지원 되지 않습니다는 ActiveDirectoryMembershipUser 클래스입니다. 가져오거나 설정할 값을 항상 throw 됩니다는 NotSupportedException합니다.