Initial commit

This commit is contained in:
2014-05-01 16:41:24 -04:00
commit e566c6ebef
247 changed files with 133367 additions and 0 deletions

13
SignalR/WeatherHub.cs Normal file
View File

@@ -0,0 +1,13 @@
using Microsoft.AspNet.SignalR;
using Microsoft.AspNet.SignalR.Hubs;
namespace WeatherService.SignalR
{
public class WeatherHub : Hub
{
public void Send(string message)
{
Clients.Others.addMessage(message);
}
}
}