Guest User

Untitled

a guest
Jan 21st, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. routes.MapHub<SignalRHub>("/rt", options =>
  2. {
  3. // when run in debug mode only WebSockets are allowed
  4. if (Debugger.IsAttached) {
  5. options.Transports = Microsoft.AspNetCore.Http.Connections.HttpTransportType.WebSockets;
  6. }
  7. });
Add Comment
Please, Sign In to add comment