다음을 통해 공유


AdvancedFilters.AccountLockoutTime(DateTime, MatchType) 메서드

정의

AccountLockoutTime 쿼리 필터를 지정된 시간 및 비교 형식으로 설정합니다.

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

매개 변수

lockoutTime
DateTime

DateTime 개체입니다.

match
MatchType

lockoutTime이 비교에 사용되는 방식을 지정하는 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.AccountLockoutTime(DateTime.Now.AddDays(-1), MatchType.GreaterThan);  

// Create a PrincipalSearcher object.  
PrincipalSearcher ps = new PrincipalSearcher(usr);  

PrincipalSearchResult<Principal> results = ps.FindAll();  

//Print user names of all accounts locked within the last 24 hours.  

foreach (UserPrincipal u in results)  
{  
  Console.WriteLine(u.Name);  
 }  

설명

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

적용 대상

추가 정보