雪尘

我躲在/濒临深秋的树下/享受孤独/我听着/紫罗兰色的琴声/迎接黎明

博客园 首页 新随笔 联系 订阅 管理
public static bool IsUserValid(string ADPath, string UserName, string Password)
{
    System.DirectoryServices.DirectoryEntry de 
= new System.DirectoryServices.DirectoryEntry(ADPath, UserName, Password, System.DirectoryServices.AuthenticationTypes.Secure);
    
try
    {
        Object native 
= de.NativeObject;
        
return true;
    }
    
catch
    {
        
return false;
    }
}

posted on 2006-02-06 08:54  雪尘的博客  阅读(502)  评论(0编辑  收藏  举报