9 references to EnvironmentName
Microsoft.AspNetCore.Hosting.Abstractions (9)
HostingEnvironmentExtensions.cs (9)
13/// Checks if the current hosting environment name is <see cref="EnvironmentName.Development"/>. 16/// <returns>True if the environment name is <see cref="EnvironmentName.Development"/>, otherwise false.</returns> 21return hostingEnvironment.IsEnvironment(EnvironmentName.Development); 25/// Checks if the current hosting environment name is <see cref="EnvironmentName.Staging"/>. 28/// <returns>True if the environment name is <see cref="EnvironmentName.Staging"/>, otherwise false.</returns> 33return hostingEnvironment.IsEnvironment(EnvironmentName.Staging); 37/// Checks if the current hosting environment name is <see cref="EnvironmentName.Production"/>. 40/// <returns>True if the environment name is <see cref="EnvironmentName.Production"/>, otherwise false.</returns> 45return hostingEnvironment.IsEnvironment(EnvironmentName.Production);