Exemplo n.º 1
0
        protected void OnEstablished(StateObject a_oStateObj)
        {
            var _client = a_oStateObj.GetData <ClientService>();

            Console.WriteLine($"Udało się podłączyć klienta! :D Identyfikator <{_client.Identifier}>");

            _client.AsyncReceive();
        }
Exemplo n.º 2
0
        protected void OnEstablished(StateObject a_oStateObj)
        {
            /*
             * using var _log = Log.DEB(this, "OnEstablished");
             */

            a_oStateObj.GetData <ClientService>().AsyncReceive();
        }
 protected void OnEstablished(StateObject a_oStateObj)
 {
     a_oStateObj.GetData <ClientService>().AsyncReceive();
 }