Beispiel #1
0
 public override string[] FindUsersInRole(string roleName, string userNameToMatch)
 {
     using (SecurityDAO dao = new SecurityDAO())
     {
         return dao.ListUserNamesByRoleAndName(roleName, userNameToMatch).ToArray();
     }
 }