Exemplo n.º 1
0
        private void Client_TextReceived(object sender, TextReceivedEventArgs e)
        {
            var args = new ServerReceivedTextEventArgs(sender as Connection, e);

            TextReceived?.Invoke(this, args);
            OnTextReceived(args);
        }
Exemplo n.º 2
0
 protected virtual void OnTextReceived(ServerReceivedTextEventArgs args)
 {
 }