Esempio n. 1
0
        protected virtual void OnDataPosted(NameValueCollection formData)
        {
            DataPosted evt = DataPostedEvent;

            if (evt != null)
            {
                evt(formData);
            }
        }
Esempio n. 2
0
 /// <summary>Called when data is sent to Tradee</summary>
 private void HandleDataPosted(object sender, EventArgs e)
 {
     DataPosted.Raise(sender, e);
 }