internal MessageIntradayTick(CorrelationID corr, Service service) : base(new Name("IntradayTickResponse"), corr, service) { this._parent = null; this._responseError = new ElementIntradayTickResponseError(); this._isResponseError = true; }
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; }
internal MessageIntradayTick(CorrelationID corr, Dictionary <DateTime, Tuple <string, double, int> > ticks, bool includeConditionCodes, Service service) : base(new Name("IntradayTickResponse"), corr, service) { this._parent = new ElementIntradayTickDataParent(ticks, includeConditionCodes); }
internal ElementReference(MessageIntradayTick msg) { this._parent = (ElementIntradayTickDataParent)msg.Elements.First(); }