다음을 통해 공유


AdvancedFilters.LastLogonTime(DateTime, MatchType) 메서드

정의

LastLogon 특성에 대한 쿼리 필터를 지정된 DateTime 및 지정된 비교 값으로 설정합니다.

public:
 void LastLogonTime(DateTime logonTime, System::DirectoryServices::AccountManagement::MatchType match);
public void LastLogonTime (DateTime logonTime, System.DirectoryServices.AccountManagement.MatchType match);
member this.LastLogonTime : DateTime * System.DirectoryServices.AccountManagement.MatchType -> unit
Public Sub LastLogonTime (logonTime As DateTime, match As MatchType)

매개 변수

logonTime
DateTime

DateTime 개체입니다.

match
MatchType

logonTime이 비교에 사용되는 방식을 지정하는 MatchType입니다.

예제

// Create the principal context for the usr object.  
PrincipalContext ctx = new PrincipalContext(ContextType.Domain, "fabrikam.com", "CN=Users,DC=fabrikam,DC=com", "administrator", "SecurelyStoredPassword");  

// Create the principal user object from the context  
UserPrincipal usr = new UserPrincipal(ctx);  

// Set the advanced query filter  
usr.AdvancedSearchFilter.LastLogonTime(DateTime.Now.AddDays(-1), MatchType.GreaterThan);  

// Create a PrincipalSearcher object.  
PrincipalSearcher ps = new PrincipalSearcher(usr);  
PrincipalSearchResult<Principal> results = ps.FindAll();  

//Write the names of all users who have logged on since yesterday  
foreach (UserPrincipal u in results)  
{  
	Console.WriteLine(u.Name);  
}  

설명

시간은 기본적으로 UTC입니다. 현지 시간으로 시간을 지정하려면 개체의 Kind 속성을 로 DateTimeKind.Local지정합니다DateTime.

적용 대상

추가 정보