public override object Clone()
        {
            MarketQuotesDownloadSettings cln = new MarketQuotesDownloadSettings();

            if (this.Sector.HasValue)
            {
                cln.Sector = this.Sector;
            }
            if (this.Industry.HasValue)
            {
                cln.Industry = this.Industry;
            }
            cln.RankDirection = this.RankDirection;
            cln.RankedBy      = this.RankedBy;
            return(cln);
        }
 public void DownloadAsync(MarketQuotesDownloadSettings settings, object userArgs)
 {
     base.DownloadAsync(settings, userArgs);
 }
 /// <summary>
 /// Default constructor
 /// </summary>
 /// <remarks></remarks>
 public MarketQuotesDownload()
 {
     this.Settings = new MarketQuotesDownloadSettings();
 }
Exemple #4
0
 public YahooManaged.Base.Response <MarketQuotesResult> Download(MarketQuotesDownloadSettings settings)
 {
     return(base.Download(settings));
 }