コード例 #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;
 }
コード例 #3
0
 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);
 }
コード例 #4
0
 internal ElementReference(MessageIntradayTick msg)
 {
     this._parent = (ElementIntradayTickDataParent)msg.Elements.First();
 }
コード例 #5
0
 internal ElementReference(MessageIntradayTick msg)
 {
     this._parent = (ElementIntradayTickDataParent)msg.Elements.First();
 }