10 references to GetValue
Aspire.Dashboard (4)
src\Shared\IConfigurationExtensions.cs (4)
13
var primaryValue = configuration.
GetValue
(typeof(T), primaryKey, null);
19
var secondaryValue = configuration.
GetValue
(typeof(T), secondaryKey, null);
36
var primaryValue = configuration.
GetValue
(typeof(string), primaryKey, null);
42
var secondaryValue = configuration.
GetValue
(typeof(string), secondaryKey, null);
Aspire.Hosting (4)
src\Shared\IConfigurationExtensions.cs (4)
13
var primaryValue = configuration.
GetValue
(typeof(T), primaryKey, null);
19
var secondaryValue = configuration.
GetValue
(typeof(T), secondaryKey, null);
36
var primaryValue = configuration.
GetValue
(typeof(string), primaryKey, null);
42
var secondaryValue = configuration.
GetValue
(typeof(string), secondaryKey, null);
Microsoft.Extensions.Configuration.Binder (2)
ConfigurationBinder.cs (2)
173
return (T?)
GetValue
(configuration, typeof(T), key, defaultValue);
190
return
GetValue
(configuration, type, key, defaultValue: null);