6 instantiations of QbeMatchType
System.DirectoryServices.AccountManagement (6)
System\DirectoryServices\AccountManagement\AdvancedFilters.cs (6)
29_badPasswordAttemptVal = new QbeMatchType(lastAttempt, match); 46_expirationTimeVal = new QbeMatchType(expirationTime, match); 63_lockoutTimeVal = new QbeMatchType(lockoutTime, match); 80_badLogonCountVal = new QbeMatchType(badLogonCount, match); 97_logonTimeVal = new QbeMatchType(logonTime, match); 114_passwordSetTimeVal = new QbeMatchType(passwordSetTime, match);
24 references to QbeMatchType
System.DirectoryServices.AccountManagement (24)
System\DirectoryServices\AccountManagement\AD\ADStoreCtx_Query.cs (12)
684Debug.Assert(filter.Value is QbeMatchType); 686QbeMatchType qmt = (QbeMatchType)filter.Value; 693Debug.Assert(filter.Value is QbeMatchType); 695QbeMatchType qmt = (QbeMatchType)filter.Value; 704Debug.Assert(filter.Value is QbeMatchType); 706QbeMatchType qmt = (QbeMatchType)filter.Value; 715Debug.Assert(filter.Value is QbeMatchType); 717QbeMatchType qmt = (QbeMatchType)filter.Value;
System\DirectoryServices\AccountManagement\AdvancedFilters.cs (6)
22private QbeMatchType _badPasswordAttemptVal; 40private QbeMatchType _expirationTimeVal; 57private QbeMatchType _lockoutTimeVal; 74private QbeMatchType _badLogonCountVal; 91private QbeMatchType _logonTimeVal; 108private QbeMatchType _passwordSetTimeVal;
System\DirectoryServices\AccountManagement\SAM\SAMQuerySet.cs (4)
348QbeMatchType valueToMatch = (QbeMatchType)filter.Value; 437QbeMatchType valueToMatch = (QbeMatchType)filter.Value;
System\DirectoryServices\AccountManagement\StoreCtx.cs (2)
431else if (value is QbeMatchType) 433((FilterBase)filter).Value = (QbeMatchType)value;