| File: HostingStartupConfigurationExtensions.cs | Web Access |
| Project: src\aspnetcore\src\Azure\AzureAppServices.HostingStartup\src\Microsoft.AspNetCore.AzureAppServices.HostingStartup.csproj (Microsoft.AspNetCore.AzureAppServices.HostingStartup) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Diagnostics.CodeAnalysis; using Microsoft.Extensions.Configuration; namespace Microsoft.AspNetCore.Hosting; internal static class HostingStartupConfigurationExtensions { public static IConfiguration GetBaseConfiguration() { return new ConfigurationBuilder() .AddEnvironmentVariables(prefix: "ASPNETCORE_") .Build(); } public static bool IsEnabled(this IConfiguration configuration, string hostingStartupName, string featureName) { if (configuration.TryGetOption(hostingStartupName, featureName, out var value)) { value = value.ToLowerInvariant(); return value != "false" && value != "0"; } return true; } public static bool TryGetOption(this IConfiguration configuration, string hostingStartupName, string featureName, [NotNullWhen(true)] out string? value) { value = configuration[$"HostingStartup:{hostingStartupName}:{featureName}"]; return !string.IsNullOrEmpty(value); } }