ASP.NET Core - Accessing Configurations Using Named Options

Introduction

 
In our previous article "ASP.NET Core - Accessing Configurations Using Options Pattern", we learned about how to bind configuration with strongly types options classes and accessing them using one of these options interfaces IOptions<TOptions>, IOptionsSnapshot<TOptions> & IOptionsMonitor<TOptions>.
 
In this article, we will see another approach to read configuration settings using the Named Options feature in an ASP.NET core project.
 
Source Code
 
You can get the source code of this article from GitHub
 

Named Options

 
Named Options are useful when you have two or more setting sections in a configuration file with common properties. In this case, you do not need to create separate options classes for each section and register them separately into the ASP.NET Dependency Injection container. Let's see an example of common settings:
 
appsettings.json
  1. "DashboardThemeSettings": {  
  2.    "NormalTheme": {  
  3.       "CssUrl""https://mysite.com/CSS/theme/normal/main.css",  
  4.       "LogoName""normal-theme-logo.png"  
  5.    },  
  6.    "DarkTheme": {  
  7.       "CssUrl""https://mysite.com/CSS/theme/dark/main.css",  
  8.       "LogoName""dark-theme-logo.png"  
  9.    }  
  10. }  
Suppose you have two different CSS and images URLs provided by design team for applying two different themes on your application dashboard like above. Now on application initialization, you want to read settings from configurations and apply them whenever it is required to change.
 
Maybe this example is not suitable for you, but my goal is just to describe here only how we can achieve this type of situation using Named Options pattern with an easier approach and minimal code.
 
However, we can also achieve this functionality using the Options Pattern as described in the previous article. let's recap Options Pattern quickly with this article also so that you could understand the real need of the Named Options approach.
 

Using Options Pattern

 
You will have to create two different strongly types of option classes while using this pattern and register them separately into DI containers. You would inject them all to use inside any service or controller. For example:
 
Creating strongly types options classes
  1. public class NormalThemeDashboardSettings  
  2. {  
  3.    public string CssUrl { getset; }  
  4.    public string LogoName { getset; }  
  5. }  
  6.   
  7. public class DarkThemeDashboardSettings  
  8. {  
  9.    public string CssUrl { getset; }  
  10.    public string LogoName { getset; }  
  11. }  
Registering into DI container
 
You would register all options classes into DI container inside ConfigureServices method in Startup.cs file like below:
  1. public void ConfigureServices(IServiceCollection services)  
  2. {  
  3.    ...  //other code
  4.   
  5.    services.Configure<NormalThemeDashboardSettings>(_configuration.GetSection("DashboardThemeSettings:NormalTheme"));  
  6.    services.Configure<NormalThemeDashboardSettings>(_configuration.GetSection("DashboardThemeSettings:DarkTheme"));  
  7. }  
Accessing configurations
 
To access and use settings inside any service or controller, you would inject them into constructor with the help of either IOptions or IOptionsSnapshot, like below:
  1. public class ThemeConfigurationReader : IThemeConfigurationReader  
  2. {  
  3.    NormalThemeDashboardSettings normalThemeSettings;  
  4.    DarkThemeDashboardSettings darkThemeSettings;  
  5.   
  6.    public ThemeConfigurationReader(  
  7.       IOptions<NormalThemeDashboardSettings> normalThemeOptions,  
  8.       IOptions<DarkThemeDashboardSettings> darkThemeOptions)  
  9.    {  
  10.       normalThemeSettings = normalThemeOptions.Value;  
  11.       darkThemeSettings = darkThemeOptions.Value;  
  12.    }  
  13.   
  14.    public string ReadThemeSettings()  
  15.    {  
  16.       return JsonConvert.SerializeObject(new  
  17.       {  
  18.          this.normalThemeSettings,  
  19.          this.darkThemeSettings  
  20.       });  
  21.    }  
  22. }  
Output
 
ASP.NET Core - Accessing Configurations Using Named Options
 
Like above, we can achieve settings by making separate strongly typed classes. The downside of this approach is that if any other theme settings will be added to the configuration file in the future, then you will have to create one more strongly typed option class and register it in DI container as done above. 
 
Now let's see how we can achieve this using Named Options.
 

Using Named Options

 
Registering Named Options is very simple. Using this pattern, we only need to create one strongly type option class and use them for all those configurations, which have the same properties. This lets us access them by name when we need to use them inside any service or controller.
 
Creating a single Options class
 
We need to create only one strongly typed option class as below:
  1. public class DashboardThemeSettings  
  2. {  
  3.    public string CssUrl { getset; }  
  4.    public string LogoName { getset; }  
  5. }  
Registering into DI container
 
Since we are using the Named Options approach, we need to register this single options class using an overload version of the Configure method of IServiceCollection where we need to provide a unique name as the first parameter. This name allows us to retrieve the specific configuration from our consuming services as shown below in below snapshot:
 
ASP.NET Core - Accessing Configurations Using Named Options
 
Startup.cs 
  1. public void ConfigureServices(IServiceCollection services)  
  2. {  
  3.     ... //other code 
  4.   
  5.     //services.Configure<NormalThemeDashboardSettings>(_configuration.GetSection("DashboardThemeSettings:NormalTheme"));  
  6.     //services.Configure<DarkThemeDashboardSettings>(_configuration.GetSection("DashboardThemeSettings:DarkTheme"));  
  7.   
  8.     services.AddSingleton<IThemeConfigurationReader, ThemeConfigurationReader>();  
  9.   
  10.     services.Configure<DashboardThemeSettings>("Normal", _configuration.GetSection("DashboardThemeSettings:NormalTheme"));  
  11.     services.Configure<DashboardThemeSettings>("Dark", _configuration.GetSection("DashboardThemeSettings:DarkTheme"));  
  12. }  
Consuming named options classes into services
 
Please note this important statement - Named Options feature is not supported by the IOptions interface. To consume Named Options, either IOptionsSnapshot or IOptionsMonitor is used.
 
As we saw in our previous article, using Options Pattern, IOptionsSnapshot can not be consumed inside a service registered as a singleton lifetime scope. because this is not allowed by the safety feature of ASP.NET Dependency Injection Container called "Scoped Validation".
 
Since we have registered our "ThemeConfigurationReader"service as a singleton lifetime, IOptionsSnapshot won't work in this case. We will use IOptionsMonitor to consume settings.
  1. public class ThemeConfigurationReader : IThemeConfigurationReader  
  2. {  
  3.    private readonly DashboardThemeSettings _noralThemeSettings;  
  4.    private readonly DashboardThemeSettings _darkThemeSettings;  
  5.   
  6.    public ThemeConfigurationReader(IOptionsMonitor<DashboardThemeSettings> optionsMonitor)  
  7.    {  
  8.       _noralThemeSettings = optionsMonitor.Get("Normal");  
  9.       _darkThemeSettings = optionsMonitor.Get("Dark");  
  10.    }  
  11.   
  12.    public string ReadThemeSettings()  
  13.    {  
  14.       return JsonConvert.SerializeObject(new  
  15.       {  
  16.          this._noralThemeSettings,  
  17.          this._darkThemeSettings  
  18.       });  
  19.    }  
  20. }  
As per above code, we need to provide the same name (we used while registering named options inside ConfigureServices services method) inside Get method for accessing individual configuration. Now run the application to see the output:
 
Output
 
 ASP.NET Core - Accessing Configurations Using Named Options
 
Choose the options interface while using Named Options/Options Pattern in ASP.NET Core
 
 ASP.NET Core - Accessing Configurations Using Named Options
 
Advantage of using Named Options approach
 
The biggest advantage of using the Named Options feature is that you do not need to create any new option class to add new theme settings in the case that in the future there are other theme settings added to the configuration. You just need to configure a new named "DashboardThemeSettings" options object.
 

Summary

 
Through this article, we learned a very useful feature Named Options for accessing configurations in our ASP.NET Core project.
  • How to use Named Options to access the same properties configurations in an ASP.NET project?
  • How to use multiple instances of same properties settings inside appsettings.json using single strongly-typed options class with named options?
  • What is the advantage of using Named Options over Options Pattern?
  • Which option interface should be used while using Named Options or Options Pattern in an ASP.NET Core project?
Thanks a lot for reading. I hope you'll love this article. Please share your valuable suggestions and feedback. Post in the comment box in case you have any questions.
 
Have a good day!