Inheritance: ConnectionEventArgs
Exemple #1
0
        protected virtual void OnDataSent(ConnectionDataEventArgs e)
        {
            var handler = DataSent;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Exemple #2
0
 void GameServer_DataReceived(object sender, ConnectionDataEventArgs e)
 {
     var connection = (Connection)e.Connection;
     ((IOClient)connection.Client).Parse(e);
 }
Exemple #3
0
        void GameServer_DataReceived(object sender, ConnectionDataEventArgs e)
        {
            var connection = (Connection)e.Connection;

            ((IOClient)connection.Client).Parse(e);
        }
Exemple #4
0
 protected virtual void OnDataSent(ConnectionDataEventArgs e)
 {
     var handler = DataSent;
     if (handler != null) handler(this, e);
 }