HostingEnvironment Class

Definition

This API supports infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases.

public ref class HostingEnvironment : Microsoft::Extensions::Hosting::IHostingEnvironment
public ref class HostingEnvironment : Microsoft::Extensions::Hosting::IHostEnvironment, Microsoft::Extensions::Hosting::IHostingEnvironment
public class HostingEnvironment : Microsoft.Extensions.Hosting.IHostingEnvironment
public class HostingEnvironment : Microsoft.Extensions.Hosting.IHostEnvironment, Microsoft.Extensions.Hosting.IHostingEnvironment
type HostingEnvironment = class
    interface IHostingEnvironment
type HostingEnvironment = class
    interface IHostingEnvironment
    interface IHostEnvironment
type HostingEnvironment = class
    interface IHostEnvironment
    interface IHostingEnvironment
Public Class HostingEnvironment
Implements IHostingEnvironment
Public Class HostingEnvironment
Implements IHostEnvironment, IHostingEnvironment
Inheritance
HostingEnvironment
Implements

Constructors

HostingEnvironment()

This API supports infrastructure and is not intended to be used directly from your code. This API may change or be removed in future releases.

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.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Extension Methods

IsDevelopment(IHostEnvironment)

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

IsEnvironment(IHostEnvironment, String)

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

IsProduction(IHostEnvironment)

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

IsStaging(IHostEnvironment)

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

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