首页 > 编程语言 >Asp.Net Core 如何获取IWebHostEnvironment

Asp.Net Core 如何获取IWebHostEnvironment

时间:2022-09-03 10:57:07浏览次数:103  
标签:Core Asp set IWebHostEnvironment sets Net Gets

一、IWebHostEnvironment 

服务器主机信息:

网站硬盘目录,网站名称,环境变量名称

    //
    // 摘要:
    //     Provides information about the web hosting environment an application is running
    //     in.
    public interface IWebHostEnvironment : IHostEnvironment
    {
        //
        // 摘要:
        //     Gets or sets the absolute path to the directory that contains the web-servable
        //     application content files.
        string WebRootPath { get; set; }
        //
        // 摘要:
        //     Gets or sets an Microsoft.Extensions.FileProviders.IFileProvider pointing at
        //     Microsoft.AspNetCore.Hosting.IWebHostEnvironment.WebRootPath.
        IFileProvider WebRootFileProvider { get; set; }
    }
    //
    // 摘要:
    //     Provides information about the hosting environment an application is running
    //     in.
    public interface IHostEnvironment
    {
        //
        // 摘要:
        //     Gets or sets the name of the application. This property is automatically set
        //     by the host to the assembly containing the application entry point.
        string ApplicationName { get; set; }
        //
        // 摘要:
        //     Gets or sets an Microsoft.Extensions.FileProviders.IFileProvider pointing at
        //     Microsoft.Extensions.Hosting.IHostEnvironment.ContentRootPath.
        IFileProvider ContentRootFileProvider { get; set; }
        //
        // 摘要:
        //     Gets or sets the absolute path to the directory that contains the application
        //     content files.
        string ContentRootPath { get; set; }
        //
        // 摘要:
        //     Gets or sets the name of the environment. The host automatically sets this property
        //     to the value of the of the "environment" key as specified in configuration.
        string EnvironmentName { get; set; }
    }

二、Startup中获取IWebHostEnvironment 

        public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }
            else
            {
                app.UseExceptionHandler("/Home/Error");
                // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
                app.UseHsts();
            }
            app.UseHttpsRedirection();
            app.UseStaticFiles();
           xxxx
        }

 

三、控制器中获取 IWebHostEnvironment 

 

    public class UploadController : Controller
    {


        private readonly IWebHostEnvironment _env;
        public UploadController(IWebHostEnvironment env)
        {
            _env = env;
        }
}

 

 

更多:

Asp.Net Core 缓存使用_Asp.Net core 服务器缓存IMemoryCache(服务器缓存)

Asp.Net Core 缓存使用_Asp.Net core 浏览器缓存(客户端缓存)

Asp.Net Core 6获取IHttpContextAccessor方法

 

标签:Core,Asp,set,IWebHostEnvironment,sets,Net,Gets
From: https://www.cnblogs.com/tianma3798/p/16652140.html

相关文章

  • EFCore额外的外键字段
    为什么需要外键属性1、EFCore会在数据表中建外键列2、如果需要获取外键列的值,就需要做关联查询,效率低3、需要一种不需要Join直接获取外键列的值的方式设置外键属性1、在......
  • Typroa + PicGo-Core +Github 配置免费图床
    Typroa+PicGo-Core+Github配置免费图床1、下载typroa:Typora官方中文站(typoraio.cn)2、下载PicGo-Core打开偏好设置:快捷键Ctrl+逗号设置如下3、打开配置文件......
  • .net core系列源码地址
    .netcore独立模块源码:https://github.com/aspnet.netcore全家桶源码:https://github.com/dotnet/aspnetcore.netcore拓展库源码:https://github.com/dotnet/ext......
  • 优炫数据库安装步骤及.net core 集成
    优炫数据库的安装安装指定版本数据库文件。当前数据库文件:uxdb-std-win-x86_64-v2.1.1.4.exe根据优炫数据库指定安装文档说明安装数据库注意在倒数第二步骤,即安装步骤的第......
  • 契约锁电子签章功能.net core集成逻辑
    注意:1.至少要在契约锁前台印控---用印流程中设定一个默认流程。2.数据库admin的用户字段mobiletel为注册契约锁系统的手机号保持一致。1.前台配置:"qysUrl":"http://1......
  • .Net Core 配置文件读取 - IOptions、IOptionsMonitor、IOptionsSnapshot
    原文链接:https://www.cnblogs.com/ysmc/p/16637781.html众所周知,appsetting.json配置文件是.Net的重大革新之心,抛开了以前繁杂的xml文件,使用了更简洁易懂的json方式......
  • .net core微服务系列之前言
    微服务概念其实已经流行了不短的年头了,只是大部分实战都是在以java为主的大型互联网公司使用,.net在国内的市场,作为.net程序猿们都懂得,就拿北京来说,前2年别说微服务了,就......
  • 了解ASP(二)
    变量ASP中的变量有普通变量,Session变量,Application变量。变量的生存期在子程序外声明的变量可被ASP文件中的任何脚本访问和修改。在子程序中声明的变量......
  • .net core中AOP的使用(一)
    理解AOPAOP全称AspectOrientedProgramming,即面向切面编程,通过预编译方式和运行期间动态代理实现程序功能的统一维护的一种技术。我理解其实就是在程序运行时,动态的将需......
  • liunx系统docker部署.net core3.1
    此篇文章演示基本的基于docker部署.netcore服务,liunx系统腾讯云ubuntu,.netcore版本3.1。1.安装dockeraptinstalldocker.io2.拉取.netcore依赖镜像dockerpullm......