Пример #1
0
 void EWrapper.softDollarTiers(int reqId, SoftDollarTier[] tiers)
 {
     SoftDollarTiers?.Invoke(reqId, tiers);
 }
Пример #2
0
 void IEWrapper.SoftDollarTiers(int reqId, SoftDollarTier[] tiers)
 {
     SoftDollarTiers?.Invoke(new SoftDollarTiersMessage(reqId, tiers));
 }
 public void softDollarTiers(int reqId, SoftDollarTier[] tiers)
 {
     SoftDollarTiers?.Invoke(this, new SoftDollarTiersArgs(reqId, tiers));
 }
Пример #4
0
 public void softDollarTiers(int reqId, SoftDollarTier[] tiers)
 {
     SoftDollarTiers?.Invoke(new SoftDollarTiersMessage(reqId, tiers));
 }
Пример #5
0
        void EWrapper.softDollarTiers(int reqId, SoftDollarTier[] tiers)
        {
            ShowDebugMessage(reqId, tiers);

            SoftDollarTiers?.Invoke(reqId, tiers);
        }
 public void softDollarTiers(int reqId, SoftDollarTier[] tiers)
 {
     SoftDollarTiers.RaiseEvent(this, new SoftDollarTiersEventArgs(reqId, tiers));
 }