Skip to content

Instantly share code, notes, and snippets.

View XSockets's full-sized avatar

We Are Real Time XSockets

View GitHub Profile
@XSockets
XSockets / Chat.cs
Last active December 26, 2015 04:59 — forked from MagnusThor/Foo.cshtml
A preview of what to come! We will bring you realtime ASP.NET MVC Controllers with STATE and WebSockets for .NET 4.5 solutions. But you will still be able to communicate through XSockets to other/older implementations on .NET 4/Mono.
//The RealTime controller of XSockets.NET
public class Chat : XSocketController
{
public string Nickname { get; set; }
public void ChatMessage(string text)
{
this.SendToAll(new { text, date = DateTime.Now, nickName = this.Nickname },"onChatMessage");
}
}