English 中文(简体)
ASP.NET 多种核心网络趋同案例
原标题:ASP.NET Core multiple types of web convergence cases

我建立了伙伴关系。 NET Core MVC 项目,但我要补充对网络AP和信号R的支持。 我知道,网播申请和MVC申请都经过了统一的申请管道。 我要问的是,如果我根据多国公司模式混淆申请管道,并在通过许多中层设备处理网络预报要求时增加许多中层设备,那么它是否会消耗大量不必要的业绩?

如果这确实是浪费业绩,那么是否有合理的管道配置计划? 仅通过必要的中层软件,我知道你可以使用<条码>应用程序。

谢谢你!

public static void UseMyEndpoints(this IApplicationBuilder application)
{
     application.UseEndpoints(endpoints =>
     {
         // SignalR                
         endpoints.MapHub<...>(...);
         
        // MVC  
         EngineContext.Current.Resolve<IRoutePublisher>().RegisterRoutes(endpoints);
         
         // WebApi
         endpoints.MapControllers();
     });
}

app.UseMyProxy();
app.UseLinqQueryCache();
app.UseMyResponseCompression();
app.UseMyWebOptimizer();
app.UseMyStaticFiles();
app.UseMyWEbMarkupMin();
app.UseKeepAlive();
app.UseSession();
app.UseMyRequestLocalization();
app.UseMyRouting();
app.UseMyCors();
app.UseMyAuthentication();
app.UseAuthorization()
app.UseMyEndpoints();
问题回答

About your question, it is YES. When configuring your ASP.NET Core application s request pipeline, it s essential to consider performance implications, especially when dealing with multiple middleware components. Adding unnecessary middleware can indeed affect performance, as each middleware component introduces some overhead in processing the request. And about your desired code, you can use this template which works for me:

public static void UseMyEndpoints(this IApplicationBuilder application)
{
  application.UseRouting(); // Enable endpoint routing

  application.UseEndpoints(endpoints =>
  {
     // SignalR
     endpoints.MapHub<...>(...);

     // MVC
     endpoints.MapControllerRoute(
        name: "default",
        pattern: "{controller=Home}/{action=Index}/{id?}");

    // Web API
    endpoints.MapControllers();
});
}
  • 使用网使终端定位成为可能,这对于移动式电算中心和网络信号传输都是必要的。

  • 对于多国铁路运输公司来说,你可以使用马普勒罗特确定常规的机动车辆路线。

  • 关于网络信息预报,地图集显示控制器。

MVC的申请已经支持网站APIC,在您的控制人员中,你可以采取行动,归还方令/json/model,你还可以在主计长的夹上点击,添加APIC控制器模板。 之后,您将同时拥有APIC控制器和MVC控制器,并相互之间取得影响力。

“enter像

MVC(public category MyMvcsController : 主计长 ->public summary 主计长: - 强化;执行 主计长班级,也执行主计长班级和APIC(<条码>) -> 执行主计长班级均用于处理由中转器发出的申请。 在http://www.un.org/Depts/DGACM/index_french.htm上,该网页将发送至相应的控制器操作方法,以便与申请保持一致。 然后,行动方法界定了该请求会得到什么。

If you want to integrate signlar, following this tutorial. It shows you how to integrate Signalr into a web app, but it s the same as MVC app. You need to install required library signalr.js, add serivces builder.Services.AddSignalR(); and create Hub which handle the websocket connection events.

信号器正在使用网络电话连接来传输与http://treaties.不同的数据,网络电话连接是长期连接,以便通过枢纽--->app.Map/2007/5<Chat Hub>”/chat/2007/5。 因此,移动式导航卫星系统的仪器也可同时整合信号器。 顺便说一句,当我们想在我们MVC的表象中增加实时聊天/免疫特征时,这应该是正常的。

然后是你所提到的业绩。 <May 本人知道,你的申请现在面临履约问题吗? 我的理解是,如果你界定了数种需要大量时间处理和通过请求的习惯中值,这可能会带来业绩问题,使中值成为业绩问题,我们不需要自己处理。 它像“如何解决存在的问题?” 问题一样。 业绩问题是一个一般概念,一般说来,我总是会遇到坏但坐在中台的 t所造成的业绩。 如果你不敢评估你,发现一些特定的中层知识会带来业绩问题,那么就应该根据实际原因努力加以改进。 诸如行道、认证、授权、静态档案、https redirecting等在内的中度设备在运行中产生了麻烦,我们可能说,如果我们掌握了这些软件,那么通过<条码>应用程序(UseHttpsRedirection);)。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...