Example #1
0
 public bool Authenticate(string userName, string pwd)
 {
     if (_authOptions.NoPwdCheck)
     {
         return(true);
     }
     return(WindowsAuth.Authenticate(userName, pwd, _authOptions.Domain));
 }