コード例 #1
0
ファイル: Site.cs プロジェクト: StasG/Gosudarev
 public bool GetLenta()
 {
     if (Connection.ConnectionAvailable())
     {
         WebClient client = new WebClient()
         {
             Encoding = Encoding.GetEncoding(1251)
         };
         string        url  = "https://acomics.ru/profile/featured";
         string        text = client.DownloadString(url);
         List <Comics> a    = new List <Comics>();
         for (int i = 0; i < Amounts.AmountLenta(); i++)
         {
             text = text.Remove(0, text.IndexOf("agrBody"));
             text = text.Remove(0, text.IndexOf("~"));
             String f1 = text.Substring(0, text.IndexOf("\""));
             text = text.Remove(0, text.IndexOf("numbers"));
             text = text.Remove(0, text.IndexOf("#") + 1);
             String f2 = text.Substring(0, text.IndexOf("<"));
             a.Add(new Comics(f1, f2));
         }
         Lenta = a;
         return(true);
     }
     else
     {
         return(false);
     }
 }