| File: WebHostDefaults.cs | Web Access |
| Project: src\aspnetcore\src\Hosting\Abstractions\src\Microsoft.AspNetCore.Hosting.Abstractions.csproj (Microsoft.AspNetCore.Hosting.Abstractions) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.AspNetCore.Hosting; /// <summary> /// Contains a set of constants representing configuration keys. /// </summary> public static class WebHostDefaults { /// <summary> /// The configuration key associated with an application name. /// </summary> public static readonly string ApplicationKey = "applicationName"; /// <summary> /// The configuration key associated with the startup assembly. /// </summary> public static readonly string StartupAssemblyKey = "startupAssembly"; /// <summary> /// The configuration key associated with "hostingStartupAssemblies" configuration. /// </summary> public static readonly string HostingStartupAssembliesKey = "hostingStartupAssemblies"; /// <summary> /// The configuration key associated with the "hostingStartupExcludeAssemblies" configuration. /// </summary> public static readonly string HostingStartupExcludeAssembliesKey = "hostingStartupExcludeAssemblies"; /// <summary> /// The configuration key associated with the "DetailedErrors" configuration. /// </summary> public static readonly string DetailedErrorsKey = "detailedErrors"; /// <summary> /// The configuration key associated with the application's environment setting. /// </summary> public static readonly string EnvironmentKey = "environment"; /// <summary> /// The configuration key associated with the "webRoot" configuration. /// </summary> public static readonly string WebRootKey = "webroot"; /// <summary> /// The configuration key associated with the "captureStartupErrors" configuration. /// </summary> public static readonly string CaptureStartupErrorsKey = "captureStartupErrors"; /// <summary> /// The configuration key associated with the "urls" configuration. /// </summary> public static readonly string ServerUrlsKey = "urls"; /// <summary> /// The configuration key associated with the "http_ports" configuration. /// </summary> public static readonly string HttpPortsKey = "http_ports"; /// <summary> /// The configuration key associated with the "https_ports" configuration. /// </summary> public static readonly string HttpsPortsKey = "https_ports"; /// <summary> /// The configuration key associated with the "ContentRoot" configuration. /// </summary> public static readonly string ContentRootKey = "contentRoot"; /// <summary> /// The configuration key associated with the "PreferHostingUrls" configuration. /// </summary> public static readonly string PreferHostingUrlsKey = "preferHostingUrls"; /// <summary> /// The configuration key associated with the "PreventHostingStartup" configuration. /// </summary> public static readonly string PreventHostingStartupKey = "preventHostingStartup"; /// <summary> /// The configuration key associated with the "SuppressStatusMessages" configuration. /// </summary> public static readonly string SuppressStatusMessagesKey = "suppressStatusMessages"; /// <summary> /// The configuration key associated with the "ShutdownTimeoutSeconds" configuration. /// </summary> public static readonly string ShutdownTimeoutKey = "shutdownTimeoutSeconds"; /// <summary> /// The configuration key associated with the "StaticWebAssets" configuration. /// </summary> public static readonly string StaticWebAssetsKey = "staticWebAssets"; }