AdvancedFilters.AccountLockoutTime(DateTime, MatchType) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Définit le filtre de requête AccountLockoutTime sur le type de comparaison et l’heure spécifiés.
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)
Paramètres
- match
- MatchType
MatchType qui spécifie la façon dont lockoutTime
doit être utilisé dans la comparaison.
Exemples
// 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);
}
Remarques
L’heure par défaut est UTC. Si vous souhaitez spécifier l’heure en heure locale, spécifiez la Kind propriété de votre DateTime objet en tant que DateTimeKind.Local.