コード例 #1
0
 internal MessageIntradayTick(CorrelationID corr, Service service)
     : base(new Name("IntradayTickResponse"), corr, service)
 {
     this._parent = null;
     this._responseError = new ElementIntradayTickResponseError();
     this._isResponseError = true;
 }
コード例 #2
0
 internal MessageIntradayTick(CorrelationID corr, Service service, Dictionary<DateTime, Tuple<string, double, int>> ticks, bool includeConditionCodes)
     : base(new Name("IntradayTickResponse"), corr, service)
 {
     this._parent = new ElementIntradayTickDataParent(ticks, includeConditionCodes);
     this._responseError = null;
     this._isResponseError = false;
 }