asp.net-core – 如何在ConfigureServices中获取开发/分段/生产主机环境

前端之家收集整理的这篇文章主要介绍了asp.net-core – 如何在ConfigureServices中获取开发/分段/生产主机环境前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Startup中如何获取ConfigureServices方法中的开发/分段/生产主机环境?
public void ConfigureServices(IServiceCollection services)
{
    // Which environment are we running under?
}

ConfigureServices方法只需要一个IServiceCollection参数。

解决方法

您可以轻松地在ConfigureServices中访问它,只需将其持久化到Startup方法中的一个属性,该方法首先被调用并将其传入,则可以从ConfigureServices访问该属性
public Startup(IHostingEnvironment env,IApplicationEnvironment appEnv)
{
    ...your code here...
    CurrentEnvironment = env;
}

private IHostingEnvironment CurrentEnvironment{ get; set; } 

public void ConfigureServices(IServiceCollection services)
{
    string envName = CurrentEnvironment.EnvironmentName;
    ... your code here...
}
原文链接:https://www.f2er.com/aspnet/253847.html

猜你在找的asp.Net相关文章