コード例 #1
0
 public bool ValidateAdminUser(string userName, string password)
 {
     if (String.IsNullOrEmpty(userName))
     {
         throw new ArgumentException("Value cannot be null or empty.", "userName");
     }
     if (String.IsNullOrEmpty(password))
     {
         throw new ArgumentException("Value cannot be null or empty.", "password");
     }
     return(CustomMembershipProvider.ValidateAdminUser(userName, password));
 }