Парсинг через WebBrowser - C#

Узнай цену своей работы

Формулировка задачи:

Вопрос банальный, но все же. С рейтинговой системы ТО мне нужно спарсить значения. Например - http://ratings.tankionline.com/ru/user/MyLove_MySecret/ Отсюда нужно достать:
  1. Уничтожил, Подбит, У/П
  2. Места в текущих рейтингах
  3. Опыт/следующее звание
Покажите на примере хотя-бы одно из них (

используя webbrowser

). Заранее спасибо

Решение задачи: «Парсинг через WebBrowser»

textual
Листинг программы
  1. public class Score
  2.     {
  3.         public int position { get; set; }
  4.         public int value { get; set; }
  5.     }
  6.  
  7.     public class Golds
  8.     {
  9.         public int position { get; set; }
  10.         public int value { get; set; }
  11.     }
  12.  
  13.     public class Crystals
  14.     {
  15.         public int position { get; set; }
  16.         public int value { get; set; }
  17.     }
  18.  
  19.     public class Rating
  20.     {
  21.         public Score score { get; set; }
  22.         public Golds golds { get; set; }
  23.         public Crystals crystals { get; set; }
  24.     }
  25.  
  26.     public class Score2
  27.     {
  28.         public int position { get; set; }
  29.         public int value { get; set; }
  30.     }
  31.  
  32.     public class Golds2
  33.     {
  34.         public int position { get; set; }
  35.         public int value { get; set; }
  36.     }
  37.  
  38.     public class Crystals2
  39.     {
  40.         public int position { get; set; }
  41.         public int value { get; set; }
  42.     }
  43.  
  44.     public class PreviousRating
  45.     {
  46.         public Score2 score { get; set; }
  47.         public Golds2 golds { get; set; }
  48.         public Crystals2 crystals { get; set; }
  49.     }
  50.  
  51.     public class TurretsPlayed
  52.     {
  53.         public object id { get; set; }
  54.         public string name { get; set; }
  55.         public int grade { get; set; }
  56.         public string imageUrl { get; set; }
  57.         public int timePlayed { get; set; }
  58.         public int scoreEarned { get; set; }
  59.     }
  60.  
  61.     public class HullsPlayed
  62.     {
  63.         public long id { get; set; }
  64.         public string name { get; set; }
  65.         public int grade { get; set; }
  66.         public string imageUrl { get; set; }
  67.         public int timePlayed { get; set; }
  68.         public int scoreEarned { get; set; }
  69.     }
  70.  
  71.     public class PaintsPlayed
  72.     {
  73.         public long id { get; set; }
  74.         public string name { get; set; }
  75.         public int grade { get; set; }
  76.         public string imageUrl { get; set; }
  77.         public int timePlayed { get; set; }
  78.         public int scoreEarned { get; set; }
  79.     }
  80.  
  81.     public class ModesPlayed
  82.     {
  83.         public string name { get; set; }
  84.         public string type { get; set; }
  85.         public int timePlayed { get; set; }
  86.         public int scoreEarned { get; set; }
  87.     }
  88.  
  89.     public class SuppliesUsage
  90.     {
  91.         public int id { get; set; }
  92.         public string name { get; set; }
  93.         public string imageUrl { get; set; }
  94.         public int usages { get; set; }
  95.     }
  96.  
  97.     public class Response
  98.     {
  99.         public string name { get; set; }
  100.         public int rank { get; set; }
  101.         public int score { get; set; }
  102.         public int scoreNext { get; set; }
  103.         public int scoreBase { get; set; }
  104.         public int kills { get; set; }
  105.         public int deaths { get; set; }
  106.         public int earnedCrystals { get; set; }
  107.         public int caughtGolds { get; set; }
  108.         public bool hasPremium { get; set; }
  109.         public Rating rating { get; set; }
  110.         public PreviousRating previousRating { get; set; }
  111.         public List<TurretsPlayed> turretsPlayed { get; set; }
  112.         public List<HullsPlayed> hullsPlayed { get; set; }
  113.         public List<PaintsPlayed> paintsPlayed { get; set; }
  114.         public List<ModesPlayed> modesPlayed { get; set; }
  115.         public List<SuppliesUsage> suppliesUsage { get; set; }
  116.         public List<object> presents { get; set; }
  117.     }
  118.  
  119.     public class RootObject
  120.     {
  121.         public string responseType { get; set; }
  122.         public Response response { get; set; }
  123.     }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

9   голосов , оценка 4.111 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы