Exemplo n.º 1
0
 public HNAgent GetThreadsUser(string id)
 {
     Sleep();
     html = HNFetcher.GetThreadsUser(id);
     url  = HNFetcher.hnurl + "threads?id=";
     return(this);
 }
Exemplo n.º 2
0
        public HNAgent NextPage()
        {
            Sleep();
            var href = HNParser.GetMoreHref(html);

            if (href != null)
            {
                url  = HNFetcher.hnurl + href;
                html = HNFetcher.GetHTML(href);
            }
            return(this);
        }
Exemplo n.º 3
0
 public HNAgent GetThreadListToday()
 {
     Sleep();
     html = HNFetcher.GetThreadListToday();
     return(this);
 }
Exemplo n.º 4
0
 public HNAgent GetThread(string id, int page = 1)
 {
     Sleep();
     html = HNFetcher.GetThread(id, page);
     return(this);
 }