Ejemplo n.º 1
0
 public ParsePages(string content, MarketUrlTypes starsType) : base(content)
 {
     this.StarsType = starsType;
 }
Ejemplo n.º 2
0
 public WebRequestResult(MarketUrlTypes urlType, string content, string url, bool isSuccess) : base(urlType, content, url)
 {
     this.IsSuccess = isSuccess;
 }
Ejemplo n.º 3
0
 public DownloadFailedResult(MarketUrlTypes urlType, string url) : base(url)
 {
     this.UrlType = urlType;
 }
Ejemplo n.º 4
0
 public DownloadUrlResult(MarketUrlTypes urlType, string content, string url) : base(url)
 {
     this.UrlType = urlType;
     this.Content = content;
 }
Ejemplo n.º 5
0
 public DownloadUrl(string url, MarketUrlTypes urlType) : base(url)
 {
     this.UrlType = urlType;
 }
 public ParsePages(string content, MarketUrlTypes starsType)
     : base(content)
 {
     this.StarsType = starsType;
 }