Advertisement
Guest User

signalR EnableDetailedErrors

a guest
Oct 20th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.21 KB | None | 0 0
  1. //Startup.cs replace app.MapSignalR(); with the fillowing
  2.  
  3. var hubConfiguration = new HubConfiguration();
  4.             hubConfiguration.EnableDetailedErrors = true;
  5.             app.MapSignalR(hubConfiguration);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement