Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. {
  2. if (env.IsDevelopment())
  3. {
  4. app.UseDeveloperExceptionPage();
  5. }
  6. app.UseCors("CorsPolicy");
  7. app.UseSignalR(routes =>
  8. {
  9. **routes.MapHub<NotifyHub>("/notify");**
  10. });
  11. app.UseMvc();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement