Exemplo n.º 1
0
        // POST api/<controller>
        public void PostChat(string who, string message)
        {
            who = Guid.NewGuid().ToString();
            _manager.AddChat(who, message);

            //broadcast the chat to all the clients
            _chatHub.SendMessage(who, message);
        }