Esempio n. 1
0
        public List <string> TestRobotDisAllowed(string url)
        {
            getRobot      test       = new getRobot(url);
            List <string> disAllowed = test.GetDisAllowed().ToList();

            return(disAllowed);
        }
Esempio n. 2
0
        public List <string> TestRobotSiteMap(string url)
        {
            getRobot test = new getRobot(url);

            return(test.GetSiteMap().ToList());
        }
Esempio n. 3
0
 public List<string> TestRobotSiteMap(string url)
 {
     getRobot test = new getRobot(url);
     return test.GetSiteMap().ToList();
 }
Esempio n. 4
0
 public List<string> TestRobotDisAllowed(string url)
 {
     getRobot test = new getRobot(url);
     List<string> disAllowed = test.GetDisAllowed().ToList();
     return disAllowed;
 }