示例#1
0
文件: Server.cs 项目: mindfox/coinium
        protected virtual void OnDataSent(ConnectionDataEventArgs e)
        {
            var handler = DataSent;

            if (handler != null)
            {
                handler(this, e);
            }
        }
示例#2
0
 protected virtual void OnDataSent(ConnectionDataEventArgs e)
 {
     var handler = DataSent;
     if (handler != null)
         handler(this, e);
 }