Files
cms_thermo_active/Step/Controllers/DataHub.cs
T
CMS4390\marantalu e63dc12dff WIP
Logger and exceptionManager
2017-12-04 17:23:22 +01:00

18 lines
292 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Microsoft.AspNet.SignalR;
using Microsoft.AspNet.SignalR.Hubs;
namespace Step.Controllers
{
public class DataHub : Hub
{
public void Hello()
{
Clients.All.hello("Ciao");
}
}
}