32 references to PropertiesToLoad
System.DirectoryServices (15)
System\DirectoryServices\ActiveDirectory\ADSearcher.cs (1)
47
public 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
128
PropertiesToLoad
.AddRange(propertiesToLoad);
632
if (
PropertiesToLoad
.Count > 0)
634
if (!
PropertiesToLoad
.Contains("ADsPath"))
637
PropertiesToLoad
.Add("ADsPath");
639
properties = new string[
PropertiesToLoad
.Count];
640
PropertiesToLoad
.CopyTo(properties, 0);
System.DirectoryServices.AccountManagement (17)
System\DirectoryServices\AccountManagement\AD\ADAMStoreCtx.cs (1)
283
dirSearcher.
PropertiesToLoad
.Add("ldapDisplayName");
System\DirectoryServices\AccountManagement\AD\ADStoreCtx.cs (10)
1037
BuildPropertySet(subtype, ds.
PropertiesToLoad
);
1294
BuildPropertySet(typeof(GroupPrincipal), searchers[index].
PropertiesToLoad
);
1449
ds.
PropertiesToLoad
.Add("memberOf");
1450
ds.
PropertiesToLoad
.Add("distinguishedName");
1451
ds.
PropertiesToLoad
.Add("primaryGroupID");
1452
ds.
PropertiesToLoad
.Add("objectSid");
1686
BuildPropertySet(typeof(UserPrincipal), dsMembers[0].
PropertiesToLoad
);
1687
BuildPropertySet(typeof(GroupPrincipal), dsMembers[0].
PropertiesToLoad
);
1714
BuildPropertySet(typeof(Principal), ds.
PropertiesToLoad
);
1831
ds.
PropertiesToLoad
.Add("distinguishedName");
System\DirectoryServices\AccountManagement\AD\ADStoreCtx_LoadStore.cs (5)
486
BuildPropertySet(typeof(UserPrincipal), ds.
PropertiesToLoad
);
487
BuildPropertySet(typeof(GroupPrincipal), ds.
PropertiesToLoad
);
488
BuildPropertySet(typeof(ComputerPrincipal), ds.
PropertiesToLoad
);
492
BuildPropertySet(typeof(AuthenticablePrincipal), ds.
PropertiesToLoad
);
496
BuildPropertySet(principalType, ds.
PropertiesToLoad
);
System\DirectoryServices\AccountManagement\AD\ADStoreCtx_Query.cs (1)
178
BuildPropertySet(qbeFilter.GetType(), ds.
PropertiesToLoad
);