Exemplo n.º 1
0
 void OnCurrencyInfo(object sender, CurrencyInfoEventArgs e)
 {
     lock (this.SyncRoot)
     {
         this.updateCallback(e.Information, null, null, null);
         this.processor.WakeUp();
     }
 }
Exemplo n.º 2
0
        void RaiseCurrencyInfo(FxMessage message)
        {
            var eh = this.CurrencyInfo;

            if (eh != null)
            {
                var e = new CurrencyInfoEventArgs(message);
                eh(this, e);
            }
        }
Exemplo n.º 3
0
 void OnCurrencyInfo(object sender, CurrencyInfoEventArgs e)
 {
 }