Example #1
0
 void EWrapper.updateAccountValue(string key, string value, string currency, string accountName)
 {
     UpdateAccountValue?.Invoke(key, value, currency, accountName);
 }
Example #2
0
 void IEWrapper.UpdateAccountValue(string key, string value, string currency, string accountName)
 {
     UpdateAccountValue?.Invoke(new AccountValueMessage(key, value, currency, accountName));
 }
 public virtual void updateAccountValue(string key, string value, string currency, string accountName)
 {
     UpdateAccountValue?.Invoke(this, new UpdateAccountValueArgs(key, value, currency, accountName));
 }
Example #4
0
 /// <summary>
 /// UpdateAccountValue event invocator
 /// </summary>
 protected virtual void OnUpdateAccountValue(UpdateAccountValueEventArgs e)
 {
     UpdateAccountValue?.Invoke(this, e);
 }
Example #5
0
 public void updateAccountValue(string key, string value, string currency, string accountName)
 {
     UpdateAccountValue?.Invoke(new UpdateAccountValueMessage(key, value, currency, accountName));
 }