“IApplicationBuilder”不包含“MapSignalR”的定义

时间:2017-03-10 12:54:28

标签: signalr asp.net-core-mvc visual-studio-2017 asp.net-core-middleware

我正在尝试在ASP.NET Core项目的Startup类上注册SignalR。当我尝试调用app.MapSignalR()来注册和启用项目上的SignalR时,它给了我:

  

“IApplicationBuilder”不包含“MapSignalR”的定义......

任何想法为什么?如何正确注册signalR?还有其他人处理同样的问题吗?

尝试安装 Microsoft.AspNet.WebApi.OwinSelfHost Microsoft.Owin ,但没有成功;(

  • Microsoft.AspNet.SignalR 2.2.1及其依赖项已全部安装
  • 目标框架设置为.NET 4.5.2
  • 代码由VS2017
  • 自动生成

跟随我的Startup.cs类文件(它是由VS自动生成的)

using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using WebApplication1.Data;
using WebApplication1.Models;
using WebApplication1.Services;

namespace WebApplication1
{
    public class Startup
    {
        public Startup(IHostingEnvironment env)
        {
            var builder = new ConfigurationBuilder()
                .SetBasePath(env.ContentRootPath)
                .AddJsonFile("appsettings.json", optional: false, reloadOnChange: true)
                .AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true);

            if (env.IsDevelopment())
            {
                // For more details on using the user secret store see https://go.microsoft.com/fwlink/?LinkID=532709
                builder.AddUserSecrets<Startup>();
            }

            builder.AddEnvironmentVariables();
            Configuration = builder.Build();
        }

        public IConfigurationRoot Configuration { get; }

        // This method gets called by the runtime. Use this method to add services to the container.
        public void ConfigureServices(IServiceCollection services)
        {
            // Add framework services.
            services.AddDbContext<ApplicationDbContext>(options =>
                options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));

            services.AddIdentity<ApplicationUser, IdentityRole>()
                .AddEntityFrameworkStores<ApplicationDbContext>()
                .AddDefaultTokenProviders();

            services.AddMvc();

            // Add application services.
            services.AddTransient<IEmailSender, AuthMessageSender>();
            services.AddTransient<ISmsSender, AuthMessageSender>();
        }

        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
        {
            loggerFactory.AddConsole(Configuration.GetSection("Logging"));
            loggerFactory.AddDebug();

            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
                app.UseDatabaseErrorPage();
                app.UseBrowserLink();
            }
            else
            {
                app.UseExceptionHandler("/Home/Error");
            }

            app.UseStaticFiles();

            app.UseIdentity();

            app.MapSignalR(); // "IApplicationBuilder" does not contain a definition for "MapSignalR"...

            // Add external authentication middleware below. To configure them please see https://go.microsoft.com/fwlink/?LinkID=532715

            app.UseMvc(routes =>
            {
                routes.MapRoute(
                    name: "default",
                    template: "{controller=Home}/{action=Index}/{id?}");
            });
        }
    }
}

1 个答案:

答案 0 :(得分:1)

您需要添加另一个using语句。根据此示例:https://github.com/aspnet/SignalR-Client-Cpp/blob/c152e53fc27d4a7670baa3a7953b99edeab88be5/samples/SignalRServer/Startup.cs,试试这个:

 using Owin;