コード例 #1
0
 public GetQuotesResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
     if (this.MessageFormat == MessageFormatEnum.JSON)
     {
         _quotes = MapToQuotes(raw.Content);
     }
 }
コード例 #2
0
 public GetMarketCalendarResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
     if (this.MessageFormat == MessageFormatEnum.JSON)
     {
         _days = Parse(raw.Content);
     }
 }
コード例 #3
0
 public GetQuotesResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
     if(this.MessageFormat == MessageFormatEnum.JSON)
         _quotes = MapToQuotes(raw.Content);
 }
コード例 #4
0
 public GetIntradayStatusResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
 }
コード例 #5
0
 public GetTimeAndSalesResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
 }
コード例 #6
0
 public GetOptionChainResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
 }
コード例 #7
0
 public GeneralAccountDataResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
 }
コード例 #8
0
 public GetHistoricalPricingResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
 }
コード例 #9
0
 public GetHistoricalPricingResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
 }
コード例 #10
0
 public GetMarketCalendarResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
     if (this.MessageFormat == MessageFormatEnum.JSON)
         _days = Parse(raw.Content);
 }
コード例 #11
0
 public GetSymbolLookupResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
 }
コード例 #12
0
 public GetCompanySearchResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
 }
コード例 #13
0
 public GetCompanySearchResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
 }
コード例 #14
0
 public GetIntradayStatusResponse(RawResponse raw, MessageFormatEnum format) : base(raw)
 {
     this.MessageFormat = format;
 }