Skip to content

XSockets chat controller

Uffe Björklund edited this page Jun 16, 2015 · 7 revisions

1 - Let's build a chat!

using XSockets.Core.XSocket;
using XSockets.Core.XSocket.Helpers;

public class Chat : XSocketController
{
    public override void OnMessage(IMessage message)
    {
        this.InvokeToAll(message);
    }
}

Lets try it with Putty!

next

Clone this wiki locally