Net Core 3.0 及 AspNet 3.0
Posted hopesun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Net Core 3.0 及 AspNet 3.0相关的知识,希望对你有一定的参考价值。
AspNet 3.0 的启动与配置:
1、Host 、IHost 通用主机,
官方文档: https://docs.microsoft.com/zh-cn/aspnet/core/fundamentals/host/generic-host?view=aspnetcore-3.0
2、IHostBuilder 建造器:
初级知识:接口的方法参数,很多都采用 Lamada 函数,=> 是标志,函数的参数可能就是需要配置的目标,并返回作为整个应用系统的设置。
方法 ConfigureHostConfiguration() 配置主机:
configHost =>
configHost.SetBasePath(Directory.GetCurrentDirectory()); configHost.AddJsonFile("hostsettings.json", optional: true); configHost.AddEnvironmentVariables(prefix: "PREFIX_"); configHost.AddCommandLine(args);
方法 ConfigureAppConfiguration()配置应用:
以上是关于Net Core 3.0 及 AspNet 3.0的主要内容,如果未能解决你的问题,请参考以下文章
.NET Core 3.0及ASP.NET Core 3.0 前瞻
.net core 3.0 Signalr - 07 业务实现-服务端 自定义管理组用户连接
如何在 ASP NET CORE 3.0 中获取当前登录的用户 ID?