I'm new to accessing Active Directory and I was advised to use System.DirectoryServices.AccountManagement but I can't find the initials variable any help ?

有帮助吗?

解决方案

You can do one of those things:

1) you can extend the normal UserPrincipal class to include additional items that you frequently need. This would be the cleanest solution, really. See the MSDN docs on extending the user principal, or answer to this SO question for an example of how to extend the UserPrincipal class with additional properties

2) You could just "reach down" into the depths of your underlying DirectoryEntry and grab the data from there:

    DirectoryEntry de = YourUserPrincipal.GetUnderlyingObject() as DirectoryEntry;

    if(de != null)
    {  
       var initials = de.Properties["initials"];

       if(initials != null && initials.Count > 0)
       {
          string theInitials = de.Properties["initials"][0].ToString();
       }
    }
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top