configureAppConfiguration method

HostBuilder configureAppConfiguration(
  1. ConfigureAppConfigurationDelegate configureDelegate
)

Sets up the configuration for the remainder of the build process and application. This can be called multiple times and the results will be additive. The results will be available at Configuration for subsequent operations, as well as in services.

Implementation

// ignore: avoid_returning_this
HostBuilder configureAppConfiguration(
  ConfigureAppConfigurationDelegate configureDelegate,
) {
  _configureAppConfigActions.add(configureDelegate);
  return this;
}