IwbHub.cs 500 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using Abp.Dependency;
  7. using Microsoft.AspNet.SignalR;
  8. namespace ShwasherSys.Hubs
  9. {
  10. public class IwbHub : Hub, ITransientDependency
  11. {
  12. /*public void GetShortMsg(string message)
  13. {
  14. this.LogDebug($"【SendShortMsg】:{message}");
  15. Clients.All.getShortMsg(message);
  16. this.LogDebug("SendShortMsg-Success");
  17. }*/
  18. }
  19. }