Partilhar via


AdvancedFilters.LastLogonTime(DateTime, MatchType) Método

Definição

Define o filtro de consulta para o atributo LastLogon para o DateTime especificado e o valor de comparação especificado.

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

Parâmetros

logonTime
DateTime

Um objeto DateTime.

match
MatchType

Um MatchType que especifica como logonTime deve ser usado na comparação.

Exemplos

// 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.LastLogonTime(DateTime.Now.AddDays(-1), MatchType.GreaterThan);  

// Create a PrincipalSearcher object.  
PrincipalSearcher ps = new PrincipalSearcher(usr);  
PrincipalSearchResult<Principal> results = ps.FindAll();  

//Write the names of all users who have logged on since yesterday  
foreach (UserPrincipal u in results)  
{  
	Console.WriteLine(u.Name);  
}  

Comentários

O tempo padrão será UTC. Se você quiser especificar a hora no horário local, especifique a Kind propriedade do DateTime objeto como DateTimeKind.Local.

Aplica-se a

Confira também