ConfigurationManager constructor

ConfigurationManager()

Creates an empty mutable configuration object that is both an ConfigurationBuilder and an ConfigurationRoot.

Implementation

ConfigurationManager() {
  _sources = ConfigurationSources(this);
  _properties = ConfigurationBuilderProperties(this);

  // Make sure there's some default storage since there are no default
  // providers.
  _sources.add(MemoryConfigurationSource());
}