Exemple #1
0
 public GetQuotesResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
     if (this.MessageFormat == MessageFormatEnum.JSON)
     {
         _quotes = MapToQuotes(raw.Content);
     }
 }
 public GetMarketCalendarResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
     if (this.MessageFormat == MessageFormatEnum.JSON)
     {
         _days = Parse(raw.Content);
     }
 }
 public GetQuotesResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
     if(this.MessageFormat == MessageFormatEnum.JSON)
         _quotes = MapToQuotes(raw.Content);
 }
 public GetIntradayStatusResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
 }
 public GetTimeAndSalesResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
 }
Exemple #6
0
 public GetOptionChainResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
 }
 public GeneralAccountDataResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
 }
 public GetHistoricalPricingResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
 }
Exemple #9
0
 public GetHistoricalPricingResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
 }
 public GetMarketCalendarResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
     if (this.MessageFormat == MessageFormatEnum.JSON)
         _days = Parse(raw.Content);
 }
Exemple #11
0
 public GetSymbolLookupResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
 }
 public GetCompanySearchResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
 }
Exemple #13
0
 public GetCompanySearchResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
 }
 public GetIntradayStatusResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
 }