Exemplo n.º 1
0
 public CommandBroadcastService(string serverListenUrl, string servicePath)
 {
     listenUrl   = serverListenUrl;
     server      = new CommandWebSocketServer(serverListenUrl);
     serviceHost = server.AddWebSocketService <T>(servicePath);
 }
Exemplo n.º 2
0
 public MultiPathBroadcastService(string serverListenUrl)
 {
     listenUrl = serverListenUrl;
     Server    = new CommandWebSocketServer(serverListenUrl);
 }