Guest User

Untitled

a guest
Sep 22nd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using SignalR.Hubs;
  6.  
  7. namespace webApps_clientsidehtml5.SignalR.Chat
  8. {
  9. public class Chat : Hub
  10. {
  11. public void Send(string message)
  12. {
  13. Clients.addMessage(Caller.userName + ": " + message);
  14. }
  15. }
  16. }
Add Comment
Please, Sign In to add comment