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