Condividi tramite


AdvancedFilters.AccountLockoutTime(DateTime, MatchType) Metodo

Definizione

Imposta il filtro di query AccountLockoutTime sull'ora e sul tipo di confronto specificati.

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)

Parametri

lockoutTime
DateTime

Un oggetto DateTime.

match
MatchType

Oggetto MatchType che specifica come usare lockoutTime nel confronto.

Esempio

// 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);  
 }  

Commenti

L'ora verrà predefinita in UTC. Se si vuole specificare l'ora in locale, specificare la proprietà dell'oggetto KindDateTime come DateTimeKind.Local.

Si applica a

Vedi anche