Ejemplo n.º 1
0
 public YahooNewsTextSource(string title, string description, string link)
 {
     this.Title       = title;
     this.Description = description;
     this.link        = link;
     this.worker      = new AsyncTextWorker(this);
 }
Ejemplo n.º 2
0
 public YahooNewsTextProvider()
 {
     this.Sources     = new List <ITextSource>();
     this.BaseUri     = @"http://news.yahoo.com/rss/";
     this.Title       = "Yahoo News";
     this.Description = "Loading...";
     this.worker      = new AsyncTextWorker(this);
 }