8 references to GetBool
Aspire.Dashboard (8)
Configuration\PostConfigureDashboardOptions.cs (1)
76
options.AI.Disabled = _configuration.
GetBool
(DashboardConfigNames.DashboardAIDisabledName.ConfigKey);
DashboardWebApplication.cs (3)
242
if (builder.Configuration.
GetBool
(DashboardConfigNames.ForwardedHeaders.ConfigKey) ?? false)
382
var isContainer = _app.Configuration.
GetBool
("DOTNET_RUNNING_IN_CONTAINER") ?? false;
464
if (builder.Configuration.
GetBool
(DashboardConfigNames.ForwardedHeaders.ConfigKey) ?? false)
Model\Assistant\ChatClientFactory.cs (1)
239
return _configuration.
GetBool
(OpenAIOptInName) ?? false;
src\Shared\IConfigurationExtensions.cs (3)
30
var value = configuration.
GetBool
(primaryKey) ?? configuration.
GetBool
(secondaryKey);
92
return configuration.
GetBool
(key) ?? defaultValue;