首页 > 代码库 > AD域验证DirectoryEntry用法
AD域验证DirectoryEntry用法
引用:
using System.Configuration;
using System.DirectoryServices;
web.config加配置:把下面的ip改为你自己域服务器ip
<appSettings> <!--域登陆Path--> <add key="ADPath" value=http://www.mamicode.com/"LDAP:10.10.1.111"/> <!--域登陆Domain--> <add key="ADDomain" value=http://www.mamicode.com/"10.10.1.111"/> </appSettings>
/// <summary> /// 域账号是否登陆成功 /// </summary> /// <param name="username">域登陆账号</param> /// <param name="pwd">域登陆密码</param> /// <returns></returns> public static bool IsAuthenticated(string username, string pwd) { string adPath = ConfigurationManager.AppSettings["ADPath"].ToString(); string domain = ConfigurationManager.AppSettings["ADDomain"].ToString(); string domainUserName = domain + @"\" + username; //或者可以这样 string domainUserName = username; DirectoryEntry entry = new DirectoryEntry(adPath, domainUserName, pwd); try { DirectorySearcher deSearch = new DirectorySearcher(entry); deSearch.Filter = "(&(objectCategory=Person)(objectClass=User)(SAMAccountName=" + username + "))"; deSearch.PropertiesToLoad.Add("cn"); SearchResult result = deSearch.FindOne(); if (null == result) { return false; } //可以获取相关信息 string _path = result.Path; string _filterAttribute = (string)result.Properties["cn"][0]; } catch (Exception ex) { throw new Exception(ex.Message); } return true; }
AD域验证DirectoryEntry用法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。