• Asp.netCore 的Startup 不继承接口


    有一个问题: Asp.netCore 的Startup 要实现 Config 和ConfigServie 方法, 为什么不接口约束呢。

    进入源码:

        //
            // 摘要:
            //     /// Specify the startup type to be used by the web host. ///
            //
            // 参数:
            //   hostBuilder:
            //     The Microsoft.AspNetCore.Hosting.IWebHostBuilder to configure.
            //
            //   startupType:
            //     The System.Type to be used.
            //
            // 返回结果:
            //     The Microsoft.AspNetCore.Hosting.IWebHostBuilder.
            public static IWebHostBuilder UseStartup(this IWebHostBuilder hostBuilder, Type startupType)
            {
                string name = startupType.GetTypeInfo().Assembly.GetName().Name;
                return hostBuilder.UseSetting(WebHostDefaults.ApplicationKey, name).ConfigureServices(delegate (IServiceCollection services)
                {
                    if (IntrospectionExtensions.GetTypeInfo(typeof(IStartup)).IsAssignableFrom(startupType.GetTypeInfo()))
                    {
                        services.AddSingleton(typeof(IStartup), startupType);
                    }
                    else
                    {
                        services.AddSingleton(typeof(IStartup), delegate (IServiceProvider sp)
                        {
                            IHostingEnvironment requiredService = sp.GetRequiredService<IHostingEnvironment>();
                            return new ConventionBasedStartup(StartupLoader.LoadMethods(sp, startupType, requiredService.EnvironmentName));
                        });
                    }
                });
            }

    这里会判断这个StartUp 是否有IStartUp 约束。

    这在后面会创建IStartUp 的。这里设置了依赖注入。

    没有约束,会根据环境给这个类增加东西的。

    气功波(18037675651)
  • 相关阅读:
    git初学【常用命令、上传项目到码云或从码云拉取、克隆项目】
    dedecms自学
    sublime3使用笔记
    路由功能
    bootstrap模态框篇【遇到的问题】
    justgage.js的使用
    fullpage.js使用方法
    js&jq遇到的问题(不断更新中)
    图灵完备——停机问题
    中断
  • 原文地址:https://www.cnblogs.com/qgbo/p/11978109.html
Copyright © 2020-2023  润新知