IHostingEnvironment Interface

Definition

Caution

This type is obsolete and will be removed in a future version. The recommended alternative is Microsoft.Extensions.Hosting.IHostEnvironment.

Caution

IHostingEnvironment has been deprecated. Use Microsoft.Extensions.Hosting.IHostEnvironment instead.

Provides information about the hosting environment an application is running in.

This type is obsolete and will be removed in a future version. The recommended alternative is Microsoft.Extensions.Hosting.IHostEnvironment.

public interface class IHostingEnvironment
public interface IHostingEnvironment
[System.Obsolete("This type is obsolete and will be removed in a future version. The recommended alternative is Microsoft.Extensions.Hosting.IHostEnvironment.", false)]
public interface IHostingEnvironment
[System.Obsolete("IHostingEnvironment has been deprecated. Use Microsoft.Extensions.Hosting.IHostEnvironment instead.")]
public interface IHostingEnvironment
type IHostingEnvironment = interface
[<System.Obsolete("This type is obsolete and will be removed in a future version. The recommended alternative is Microsoft.Extensions.Hosting.IHostEnvironment.", false)>]
type IHostingEnvironment = interface
[<System.Obsolete("IHostingEnvironment has been deprecated. Use Microsoft.Extensions.Hosting.IHostEnvironment instead.")>]
type IHostingEnvironment = interface
Public Interface IHostingEnvironment
Derived
Attributes

Properties

ApplicationName

Gets or sets the name of the application. This property is automatically set by the host to the assembly containing the application entry point.

ContentRootFileProvider

Gets or sets an IFileProvider pointing at ContentRootPath.

ContentRootPath

Gets or sets the absolute path to the directory that contains the application content files.

EnvironmentName

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.

Extension Methods

IsDevelopment(IHostingEnvironment)

Checks if the current hosting environment name is Development. This API should not be used in libraries, see remarks for details.

IsEnvironment(IHostingEnvironment, String)

Compares the current hosting environment name against the specified value. Library authors should avoid using this API, see remarks for details.

IsProduction(IHostingEnvironment)

Checks if the current hosting environment name is Production. This API should not be used in libraries, see remarks for details.

IsStaging(IHostingEnvironment)

Checks if the current hosting environment name is Staging. This API should not be used in libraries, see remarks for details.

Applies to