Esempio n. 1
0
        public DirectoryEntry GetComputerDirectoryEntry(string computerName, string[] propertiesToLoad)
        {
            EntryUtil eu = new EntryUtil();

            return(eu.GetADDirectoryEntry(propertiesToLoad, EntryUtil.GetADComputerFilter(computerName)));
        }
Esempio n. 2
0
 public DirectoryEntry GetUserDirectoryEntry(string userName, string[] propertiesToLoad, DirectoryEntry searchRoot)
 {
     EntryUtil eu = new EntryUtil();
     return eu.GetADDirectoryEntry(propertiesToLoad, EntryUtil.GetADUserFilter(userName), searchRoot);
 }
Esempio n. 3
0
        public DirectoryEntry GetUserDirectoryEntry(string userName, string[] propertiesToLoad, DirectoryEntry searchRoot)
        {
            EntryUtil eu = new EntryUtil();

            return(eu.GetADDirectoryEntry(propertiesToLoad, EntryUtil.GetADUserFilter(userName), searchRoot));
        }
Esempio n. 4
0
 public DirectoryEntry GetComputerDirectoryEntry(string computerName, string[] propertiesToLoad)
 {
     EntryUtil eu = new EntryUtil();
     return eu.GetADDirectoryEntry(propertiesToLoad, EntryUtil.GetADComputerFilter(computerName));
 }