IApplicaionBuilder dos not contain a definition UseEndpoints. app.UseEndpoints(…) not workin on ASP.NET CORE

huangapple go评论88阅读模式
英文:

IApplicaionBuilder dos not contain a definition UseEndpoints. app.UseEndpoints(...) not workin on ASP.NET CORE

问题

我正在尝试在我的项目中使用SignalR,但当我尝试使用app.UseEndpoints(...)时,它给我一个错误,说"IApplicationBuilder does not contain UserEndpoints"。这是我的StartUp类上的代码:

  1. // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
  2. public void Configure(IApplicationBuilder app, IHostingEnvironment env)
  3. {
  4. if (env.IsDevelopment())
  5. {
  6. app.UseDeveloperExceptionPage();
  7. app.UseDatabaseErrorPage();
  8. }
  9. else
  10. {
  11. app.UseExceptionHandler("/Home/Error");
  12. app.UseHsts();
  13. }
  14. app.UseHttpsRedirection();
  15. app.UseStaticFiles();
  16. app.UseCookiePolicy();
  17. app.UseAuthentication();
  18. // SIGNAL R - ERROR
  19. app.UseEndpoints(endpoints =>
  20. {
  21. endpoints.MapHub<ChatHub>("/myHub");
  22. });
  23. app.UseMvc(routes =>
  24. {
  25. routes.MapRoute(
  26. name: "default",
  27. template: "{controller=Home}/{action=Index}/{id?}");
  28. });
  29. }

你应该怎么做?

我的Hub类:

  1. public class MyHub : Microsoft.AspNet.SignalR.Hub
  2. {
  3. public async Task PostMarker(string latitude, string longitude)
  4. {
  5. await Clients.All.SendAsync("ReceiveLocation", latitude, longitude);
  6. }
  7. }
英文:

I'm trying to incorporate signalR on my project, but when I try to use app.UseEndpoints(...) it gives me an error saying that "IApplicationBuilder does not contain UserEndpoints. Here is the code on my StartUp class:

  1. // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
  2. public void Configure(IApplicationBuilder app, IHostingEnvironment env)
  3. {
  4. if (env.IsDevelopment())
  5. {
  6. app.UseDeveloperExceptionPage();
  7. app.UseDatabaseErrorPage();
  8. }
  9. else
  10. {
  11. app.UseExceptionHandler(&quot;/Home/Error&quot;);
  12. app.UseHsts();
  13. }
  14. app.UseHttpsRedirection();
  15. app.UseStaticFiles();
  16. app.UseCookiePolicy();
  17. app.UseAuthentication();
  18. //SIGNAL R - ERROR
  19. app.UseEndpoints(endpoints =&gt;
  20. {
  21. endpoints.MapHub&lt;ChatHub&gt;(&quot;/myHub&quot;);
  22. });
  23. app.UseMvc(routes =&gt;
  24. {
  25. routes.MapRoute(
  26. name: &quot;default&quot;,
  27. template: &quot;{controller=Home}/{action=Index}/{id?}&quot;);
  28. });
  29. }
  30. }

What should I do?

My Hub:

  1. public class MyHub : Microsoft.AspNet.SignalR.Hub
  2. {
  3. public async Task PostMarker(string latitude, string longitude)
  4. {
  5. await Clients.All.SendAsync(&quot;ReceiveLocation&quot;, latitude, longitude);
  6. }
  7. }

答案1

得分: 11

根据您的评论,您正在针对.NET Core 2.1,但UseEndpoints扩展方法是在3.0中引入的

要在2.1中添加SignalR,首先确保您的ConfigureServices方法中有services.AddSignalR();。其次,在Configure方法中,您应该使用app.UseSignalR,而不是UseEndpoints

像这样:

  1. app.UseSignalR(route =>
  2. {
  3. route.MapHub<MyHub>("/myHub");
  4. });
英文:

As per your comment, you are targeting .NET Core 2.1, but the UseEndpoints extension method was introduced in 3.0.

To add SignalR in 2.1, firstly make sure you have services.AddSignalR(); in your ConfigureServices method. Secondly, you should use app.UseSignalR in the Configure method, instead of UseEndpoints.

Like so:

  1. app.UseSignalR(route =&gt;
  2. {
  3. route.MapHub&lt;MyHub&gt;(&quot;/myHub&quot;);
  4. });

huangapple
  • 本文由 发表于 2020年1月3日 20:10:50
  • 转载请务必保留本文链接:https://go.coder-hub.com/59578416.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定