Search code examples
c#.netactive-directoryldapdirectoryservices

Limiting the attributes returned in an LDAP query


How do I limit the attributes that are returned in an LDAP query through System.DirectoryServices?

I have been using a DirectorySearcher and adding the properties that I want to DirectorySearcher.PropertiesToLoad. The problem is that this just makes sure that the added properties are included in the DirectoryEntry.Properties as well as some default list. Is there any way to specify the only properties that you want returned?

DirectoryEntry base = new DiectoryEntry(rootPath, null, null, AuthenticationTypes.FastBind);
DirectorySearcher groupSearcher = new DirectorySearcher(base);
groupSearcher.Filter = "(objectClass=group)";
groupSearcher.PropertiesToLoad.Add("distinguishedName");
groupSearcher.PropertiesToLoad.Add("description");
foreach (SearchResult groupSr in groupDs.FindAll())
...

Inside the foreach loop when I get the group DirectoryEntry there are about 16 different properties that I can access not just the two that I specified (distinguishedName, description)


Solution

  • The thing you're limiting there are the properties that will be available / filled in your SearchResult objects - which you can access directly in your foreach loop:

    DirectoryEntry baseEntry = new DirectoryEntry(rootPath, null, null, AuthenticationTypes.FastBind);
    
    DirectorySearcher groupSearcher = new DirectorySearcher(baseEntry);
    groupSearcher.Filter = "(objectClass=group)";
    
    groupSearcher.PropertiesToLoad.Add("distinguishedName");
    groupSearcher.PropertiesToLoad.Add("description");
    
    foreach (SearchResult groupSr in groupSearcher.FindAll())
    {
       if(groupSr.Properties["description"] != null && groupSr.Properties["description"].Count > 0)
       {
          string description = groupSr.Properties["description"][0].ToString();
       }
    
      .....
    } 
    

    You cannot limit the properties on the actual DirectoryEntry - so if you go grab the directory entry for each SearchResult - you have full access to everything. But the whole point is that you can define what properties you need, and access those directly on the SearchResult, without having to go back to the underlying DirectoryEntry