Ejemplo n.º 1
0
 public void GetAll200()
 {
     All_Pages.GetAllLinks();
     for (int i = 0; i < All_Pages.siteAllLinks.Count; i++)
     {
         try
         {
             Page_StatusCode.GetResponse(All_Pages.siteAllLinks[i].ToString());
         }
         catch
         {
             continue;
         }
     }
 }
Ejemplo n.º 2
0
 public void GetTitle()
 {
     All_Pages.GetAllLinks();
     for (int i = 0; i < All_Pages.siteAllLinks.Count; i++)
     {
         try
         {
             Helper_Title.CheckTitles(All_Pages.siteAllLinks[i].ToString());
         }
         catch
         {
             continue;
         }
     }
 }
Ejemplo n.º 3
0
 public void CheckUrls()
 {
     All_Pages.GetAllLinks();
     for (int i = 0; i < All_Pages.siteAllLinks.Count; i++)
     {
         try
         {
             slash_helper.GetURL(All_Pages.siteAllLinks[i].ToString());
         }
         catch
         {
             continue;
         }
     }
 }
 public void CheckUrls()
 {
     All_Pages.GetAllLinks();
     for (int i = 0; i < All_Pages.siteAllLinks.Count; i++)
     {
         try
         {
             mixed_ContentHelper.CheckProtocol(All_Pages.siteAllLinks[i].ToString());
         }
         catch
         {
             continue;
         }
     }
 }
 public void W3C()
 {
     All_Pages.GetAllLinks();
     for (int i = 0; i < All_Pages.siteAllLinks.Count; i++)
     {
         try
         {
             W3C_hel_per.Validate(All_Pages.siteAllLinks[i].ToString());
         }
         catch
         {
             continue;
         }
     }
 }
Ejemplo n.º 6
0
        public void GetCanonical()
        {
            All_Pages.GetAllLinks();
            for (int i = 0; i < All_Pages.siteAllLinks.Count; i++)
            {
                try
                {
                    Canonical_Helper.CheckCanonical(All_Pages.siteAllLinks[i].ToString());
                }

                catch
                {
                    continue;
                }
            }
        }
Ejemplo n.º 7
0
 public void GetAll301()
 {
     All_Pages.GetAllLinks();
     for (int i = 0; i < All_Pages.siteAllLinks.Count; i++)
     {
         try
         {
             http_www_URLs.GetURL(All_Pages.siteAllLinks[i].ToString());
             Get_StatusCode301.GetStatus(http_www_URLs.httpwwwURLs[i].ToString(), All_Pages.siteAllLinks[i].ToString());
         }
         catch
         {
             continue;
         }
     }
 }