- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将 SignalR 合并到我的项目中,但我不能在 Startup 类中添加行 app.MapSignalR() 时出现错误。这是 StartUp 类:
public class Startup
{
public Startup(IConfiguration configuration{...}
public IConfiguration Configuration { get; }
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{...}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
app.UseDatabaseErrorPage();
}
else
{
app.UseExceptionHandler("/Home/Error");
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseCookiePolicy();
app.UseAuthentication();
app.MapSignalR(); // ERROR - IApplicaionBuilder dos not contain a definition MapSignalR() and the best extension method overload ' OwinExtensios.MapSignalR(IAppBuilder)' requires a receiver of type 'IAppBuilder'
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller=Home}/{action=Index}/{id?}");
});
}
}
我已经添加了“使用 Owin;”但它仍然不起作用。我该怎么办?
最佳答案
像这样使用。这是针对 .net core 3.0+ 的
public void ConfigureServices(IServiceCollection services)
{
services.AddSignalR();
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler("/Error");
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseRouting();
app.UseAuthorization();
app.UseEndpoints(endpoints =>
{
endpoints.MapHub<ChatHub>("/chatHub");
});
}
如果.net core 2.2则使用下面
app.UseSignalR(routes =>
{
routes.MapHub<ChatHub>("/chatHub");
});
而不是
app.UseEndpoints(endpoints =>
{
endpoints.MapHub<ChatHub>("/chatHub");
});
关于c# - IApplicationBuilder 不包含定义 MapSignalR()。 app.MapSignalR() 不适用于 ASP.NET CORE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59566761/
如官方所述document ,我正在尝试在 Startup.cs 中实现 UseOwin。我正在尝试使用/移植 IAppBuilder (Microsoft.Owin.Builder.AppBuild
只是想知道,是否可以在 startup.cs 之外访问 IApplicationBuilder 属性?就像在 Controller 中一样? 我知道它仅用于定义应用程序管道,那么解决方案是什么?比如注
我正在尝试使用此示例代码 from Microsoft docs 在我的 ASP.NET Core 2.2 MVC 应用程序的中间件中配置某些 HTTP 响应状态代码的处理: app.UseStatu
我是 Azure Signal Services 的新手,正在尝试将我的应用程序连接到 Azure Signal R 服务。我正在进行概念验证,以检查在我的应用程序中使用的可行性。 代码 publi
我一直在尝试在我的 Blazor 应用程序中实现功能管理,如下 this和 that但由于某种原因,我的程序拒绝接受“UseAzureAppConfiguration”,即使我应该有正确的使用和包。
我一直在尝试在我的 Blazor 应用程序中实现功能管理,如下 this和 that但由于某种原因,我的程序拒绝接受“UseAzureAppConfiguration”,即使我应该有正确的使用和包。
我正在按照一个示例在 AspNet Core 3.0 上配置 AspNet Core Identity 这是 StartUp.cs 文件的代码 using Microsoft.AspNetCore.B
在新的 ASP.NET 5.0 (vNext) 中,启动代码依赖于 IApplicationBuilder interface . Use方法用于向构建器添加处理程序,而 Build用于构造最终委托(
我尝试了不同版本的 StaticFiles。但它显示错误,因为 IApplicationBuilder 不包含 UseStaticFiles()。 "Microsoft.AspNetCore.Stat
如果在 MVC (app.UseMvc()) 之后添加到 IApplicationBuilder 中,开发人员异常页面 (app.UseDeveloperExceptionPage()) 为空Star
我在我的项目中使用 bit 框架,我想在 appstartup.cs 中添加 UseHttpsRedirection 作为中间件,我如何使用 bit 框架来做到这一点? 最佳答案 尝试使用这段代码:
我正在使用在 .NET Framework 4.7.2 上运行的 ASP.NET WebForms 应用程序,该应用程序位于 Azure 应用程序网关后面。网关执行 SSL 切换,因此添加 X-For
VS 2015 Update 3 已经发布,我已经开始使用它了。但我很快就遇到了问题。 IApplicationBuilder 接口(interface)似乎没有 UseWebApi 扩展方法的定义,
相关问题 Using IApplicationBuilder.Map generates nested paths with UseMvc CallbackPath implementation Re
我正在尝试新的 asp.net 5 和 VSNET 2015 RC。 我的网络应用程序的配置:Microsoft.AspNet.Mvc 6.0.0-beta4 我对这种行为感到很困惑:如果我使用 p
我想使用 Asp.Net Core 2.2 来托管我的 Angular 应用程序 - 以及提供 API 请求(在/api 上)。 所以在 Startup.cs,Configure 中,我设置了以下内容
我是 GraphQL 新手。每当我运行我的项目时,它都会显示 server is not reachable 我交叉检查了项目文件,我猜问题出在 Startup.cs 文件上。我尝试在配置函数中使用
我是 GraphQL 新手。每当我运行我的项目时,它都会显示 server is not reachable 我交叉检查了项目文件,我猜问题出在 Startup.cs 文件上。我尝试在配置函数中使用
我正在尝试根据请求 URL 的第一个文件夹段实现 Multi-Tenancy 。 考虑我的初创公司的以下片段。 foreach (SiteFolder f in allFolders) { P
ASP.NET Core 为 app.Use() 方法提供了两个重载。通常我们只使用一个重载,即 app.Use(Func, Task> middleware) 用作 app.Use(async (c
我是一名优秀的程序员,十分优秀!