You're tasked with creating a custom configuration provider for your ASP.NET Core application. What interface should your custom provider implement?

  • IConfigurationProvider
  • IConfigurationRoot
  • IConfiguration
  • IServiceProvider
To create a custom configuration provider for an ASP.NET Core application, your provider should implement the IConfigurationProvider interface. This interface defines methods for reading and updating configuration data, allowing you to extend the configuration capabilities of your application.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *