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

一个 MatchType,它指定在比较中应如何使用 lockoutTime

示例

// 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。 如果要以本地时间指定时间,请将 对象的 属性DateTime指定KindDateTimeKind.Local

适用于

另请参阅