AdvancedFilters.LastLogonTime(DateTime, MatchType) 方法    
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
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 -> unitPublic Sub LastLogonTime (logonTime As DateTime, match As MatchType)参数
示例
// 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);  
}  
注解
时间默认为 UTC。 如果要以本地时间指定时间,请将 对象的 属性DateTime指定Kind为 DateTimeKind.Local。