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

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

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

解决方法

您可以轻松地在ConfigureServices中访问它,只需将其持久化到Startup方法中的一个属性,该方法首先被调用并将其传入,则可以从ConfigureServices访问该属性
  1. public Startup(IHostingEnvironment env,IApplicationEnvironment appEnv)
  2. {
  3. ...your code here...
  4. CurrentEnvironment = env;
  5. }
  6.  
  7. private IHostingEnvironment CurrentEnvironment{ get; set; }
  8.  
  9. public void ConfigureServices(IServiceCollection services)
  10. {
  11. string envName = CurrentEnvironment.EnvironmentName;
  12. ... your code here...
  13. }

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