1 implementation of GetEnvironmentVariableAsBool
Microsoft.DotNet.Cli.Utils (1)
EnvironmentProvider.cs (1)
112public bool GetEnvironmentVariableAsBool(string name, bool defaultValue)
6 references to GetEnvironmentVariableAsBool
dotnet (1)
Telemetry\TelemetryClient.cs (1)
117Enabled = !environmentProvider.GetEnvironmentVariableAsBool(EnvironmentVariableNames.TELEMETRY_OPTOUT,
Microsoft.DotNet.Cli.Utils (1)
Env.cs (1)
24s_environment.GetEnvironmentVariableAsBool(name, defaultValue);
Microsoft.NET.Build.Containers (4)
Registry\RegistrySettings.cs (4)
17environment.GetEnvironmentVariableAsBool(EnvVariables.ForceChunkedUpload, defaultValue: false) : 18environment.GetEnvironmentVariableAsBool(EnvVariables.ForceChunkedUploadLegacy, defaultValue: false); 20environment.GetEnvironmentVariableAsBool(EnvVariables.ParallelUploadEnabled, defaultValue: true) : 21environment.GetEnvironmentVariableAsBool(EnvVariables.ParallelUploadEnabledLegacy, defaultValue: true);