上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 112 下一页
摘要: 直接上代码,我们可以创建自己的MyStartUp类 public class MyStartup { //这个方法是可有可无的、用来进行依赖注入的添加 public void ConfigureServices(IServiceCollection services) { services.AddM 阅读全文
posted @ 2021-04-23 14:46 ProZkb 阅读(137) 评论(0) 推荐(0) 编辑
摘要: { "iisSettings": { "windowsAuthentication": false, "anonymousAuthentication": true, "iisExpress": { "applicationUrl": "http://localhost:59016", "sslPo 阅读全文
posted @ 2021-04-23 12:52 ProZkb 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 直接上代码,重点文字看注释 namespace ProNetCore { public class Program { public static void Main(string[] args) { //在内部会先配置K8s服务器和IIS相关,其他配置 IHostBuilder builder = 阅读全文
posted @ 2021-04-23 12:34 ProZkb 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 承接上文 首先明确下枚举含义:一个一个地举出来。 再来明确这几个单词的含义: 1、什么是可枚举类型 可枚举类型是带有GetEnumerator方法的类型,不一定是类也有可能是数组,接口,它返回一个枚举器。 就是说你声明了一个类吧,可以"点"出来这个GetEnumerator()这个方法,那这个类就是 阅读全文
posted @ 2021-04-22 10:11 ProZkb 阅读(456) 评论(0) 推荐(0) 编辑
摘要: 承接上一篇 首先理解两个词: 服务 》接口 组件 》类 1:使用Autofac第一就是要先Nuget这个包:autofac--》AutoFac.Extensions.Dependencyinjection 2:在启动项配置下: public static IHostBuilder CreateHos 阅读全文
posted @ 2021-04-20 14:25 ProZkb 阅读(108) 评论(0) 推荐(0) 编辑
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 112 下一页