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

適用於

另請參閱