Bagikan melalui


AdvancedFilters.LastLogonTime(DateTime, MatchType) Metode

Definisi

Mengatur filter kueri untuk LastLogon atribut ke nilai perbandingan yang ditentukan DateTime dan yang ditentukan.

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)

Parameter

logonTime
DateTime

Objek DateTime.

match
MatchType

MatchType yang menentukan bagaimana logonTime harus digunakan dalam perbandingan.

Contoh

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

Keterangan

Waktu akan default ke UTC. Jika Anda ingin menentukan waktu di waktu setempat, tentukan Kind properti objek Anda DateTime sebagai DateTimeKind.Local.

Berlaku untuk

Lihat juga