Example #1
0
 internal IntradayTickMessage(CorrelationID corr, Service service) :
     base(new Name("IntradayTickResponse"), corr, service)
 {
     this._parent          = null;
     this._responseError   = new IntradayTickElementResponseError();
     this._isResponseError = true;
 }
Example #2
0
 internal IntradayTickMessage(CorrelationID corr, Service service, SortedDictionary <DateTime, Types.Tuple3 <string, double, int> > ticks, bool includeConditionCodes) :
     base(new Name("IntradayTickResponse"), corr, service)
 {
     this._parent          = new IntradayTickElementDataParent(ticks, includeConditionCodes);
     this._responseError   = null;
     this._isResponseError = false;
 }