Exemple #1
0
 public void RemoveUpdateEvent(Market.UpdateEvent updateEvent)
 {
 }
Exemple #2
0
 /// <summary>
 /// Function: remove an update function that is called by the Market connection when an order status is changed.
 /// </summary>
 public static void RemoveUpdateEvent(Market.UpdateEvent updateEvent)
 {
     _updateDB -= updateEvent;
 }
Exemple #3
0
 public void AddUpdateEvent(Market.UpdateEvent updateEvent)
 {
 }
Exemple #4
0
 /// <summary>
 /// Function: Add an update function that is called by the Market connection when an order status is changed.
 /// This function is usually used to implement a UI change but can be used for any external updating of information linked to an order.
 /// </summary>
 public static void AddUpdateEvent(Market.UpdateEvent updateEvent)
 {
     _updateDB += updateEvent;
 }