32 references to PropertiesToLoad
System.DirectoryServices (15)
System\DirectoryServices\ActiveDirectory\ADSearcher.cs (1)
47public StringCollection PropertiesToLoad => _searcher.PropertiesToLoad;
System\DirectoryServices\DirectorySearcher.cs (14)
54/// <see cref='System.DirectoryServices.DirectorySearcher.Filter'/>, <see cref='System.DirectoryServices.DirectorySearcher.PropertiesToLoad'/>, and <see cref='System.DirectoryServices.DirectorySearcher.SearchScope'/> set to their default values. 63/// <see cref='System.DirectoryServices.DirectorySearcher.Filter'/>, <see cref='System.DirectoryServices.DirectorySearcher.PropertiesToLoad'/>, and <see cref='System.DirectoryServices.DirectorySearcher.SearchScope'/> set to their default 73/// <see cref='System.DirectoryServices.DirectorySearcher.PropertiesToLoad'/> and <see cref='System.DirectoryServices.DirectorySearcher.SearchScope'/> set to their default 84/// value, and <see cref='System.DirectoryServices.DirectorySearcher.SearchRoot'/>, <see cref='System.DirectoryServices.DirectorySearcher.Filter'/>, and <see cref='System.DirectoryServices.DirectorySearcher.PropertiesToLoad'/> set to the respective given values. 93/// <see cref='System.DirectoryServices.DirectorySearcher.PropertiesToLoad'/>, and <see cref='System.DirectoryServices.DirectorySearcher.SearchScope'/> set to their default 104/// values, and <see cref='System.DirectoryServices.DirectorySearcher.Filter'/> and <see cref='System.DirectoryServices.DirectorySearcher.PropertiesToLoad'/> set to the respective given values. 113/// value, and <see cref='System.DirectoryServices.DirectorySearcher.Filter'/>, <see cref='System.DirectoryServices.DirectorySearcher.PropertiesToLoad'/>, and <see cref='System.DirectoryServices.DirectorySearcher.SearchScope'/> set to the respective given values. 120/// Initializes a new instance of the <see cref='System.DirectoryServices.DirectorySearcher'/> class with the <see cref='System.DirectoryServices.DirectorySearcher.SearchRoot'/>, <see cref='System.DirectoryServices.DirectorySearcher.Filter'/>, <see cref='System.DirectoryServices.DirectorySearcher.PropertiesToLoad'/>, and <see cref='System.DirectoryServices.DirectorySearcher.SearchScope'/> properties set to the given 128PropertiesToLoad.AddRange(propertiesToLoad); 632if (PropertiesToLoad.Count > 0) 634if (!PropertiesToLoad.Contains("ADsPath")) 637PropertiesToLoad.Add("ADsPath"); 639properties = new string[PropertiesToLoad.Count]; 640PropertiesToLoad.CopyTo(properties, 0);
System.DirectoryServices.AccountManagement (17)
System\DirectoryServices\AccountManagement\AD\ADAMStoreCtx.cs (1)
283dirSearcher.PropertiesToLoad.Add("ldapDisplayName");
System\DirectoryServices\AccountManagement\AD\ADStoreCtx.cs (10)
1037BuildPropertySet(subtype, ds.PropertiesToLoad); 1294BuildPropertySet(typeof(GroupPrincipal), searchers[index].PropertiesToLoad); 1449ds.PropertiesToLoad.Add("memberOf"); 1450ds.PropertiesToLoad.Add("distinguishedName"); 1451ds.PropertiesToLoad.Add("primaryGroupID"); 1452ds.PropertiesToLoad.Add("objectSid"); 1686BuildPropertySet(typeof(UserPrincipal), dsMembers[0].PropertiesToLoad); 1687BuildPropertySet(typeof(GroupPrincipal), dsMembers[0].PropertiesToLoad); 1714BuildPropertySet(typeof(Principal), ds.PropertiesToLoad); 1831ds.PropertiesToLoad.Add("distinguishedName");
System\DirectoryServices\AccountManagement\AD\ADStoreCtx_LoadStore.cs (5)
486BuildPropertySet(typeof(UserPrincipal), ds.PropertiesToLoad); 487BuildPropertySet(typeof(GroupPrincipal), ds.PropertiesToLoad); 488BuildPropertySet(typeof(ComputerPrincipal), ds.PropertiesToLoad); 492BuildPropertySet(typeof(AuthenticablePrincipal), ds.PropertiesToLoad); 496BuildPropertySet(principalType, ds.PropertiesToLoad);
System\DirectoryServices\AccountManagement\AD\ADStoreCtx_Query.cs (1)
178BuildPropertySet(qbeFilter.GetType(), ds.PropertiesToLoad);