11 references to PrincipalSearchResult
System.DirectoryServices.AccountManagement (11)
System\DirectoryServices\AccountManagement\AuthenticablePrincipal.cs (5)
297return new PrincipalSearchResult<T>(context.QueryCtx.FindByLockoutTime(time, type, typeof(T))); 303return new PrincipalSearchResult<T>(context.QueryCtx.FindByLogonTime(time, type, typeof(T))); 309return new PrincipalSearchResult<T>(context.QueryCtx.FindByExpirationTime(time, type, typeof(T))); 315return new PrincipalSearchResult<T>(context.QueryCtx.FindByBadPasswordAttempt(time, type, typeof(T))); 321return new PrincipalSearchResult<T>(context.QueryCtx.FindByPasswordSetTime(time, type, typeof(T)));
System\DirectoryServices\AccountManagement\Group.cs (2)
203return new PrincipalSearchResult<Principal>(ContextRaw.QueryCtx.GetGroupMembership(this, recursive)); 210return new PrincipalSearchResult<Principal>(null);
System\DirectoryServices\AccountManagement\Principal.cs (2)
532return new PrincipalSearchResult<Principal>(GetGroupsHelper()); 540return new PrincipalSearchResult<Principal>(GetGroupsHelper(contextToQuery));
System\DirectoryServices\AccountManagement\PrincipalSearcher.cs (1)
266PrincipalSearchResult<Principal> fr = new PrincipalSearchResult<Principal>(resultSet);
System\DirectoryServices\AccountManagement\User.cs (1)
266return new PrincipalSearchResult<Principal>(GetAuthorizationGroupsHelper());