コード例 #1
0
ファイル: UpdateHandler.cs プロジェクト: hombrevrc/FDK
 void OnCurrencyInfo(object sender, CurrencyInfoEventArgs e)
 {
     lock (this.SyncRoot)
     {
         this.updateCallback(e.Information, null, null, null);
         this.processor.WakeUp();
     }
 }
コード例 #2
0
        void RaiseCurrencyInfo(FxMessage message)
        {
            var eh = this.CurrencyInfo;

            if (eh != null)
            {
                var e = new CurrencyInfoEventArgs(message);
                eh(this, e);
            }
        }
コード例 #3
0
ファイル: Example.cs プロジェクト: hombrevrc/FDK
 void OnCurrencyInfo(object sender, CurrencyInfoEventArgs e)
 {
 }