Azavea.Open.Common.Config.Config C# (CSharp) Method

Config() public method

Construct a config class. The app name is used for logging, and to get the config file name if the file name was not specified and the XML was not passed directly. If you provide the XML, the app name is just used for logging, and the filename is stored but not used for anything (and may be blank).
public Config ( string configFileName, string appName, XmlDocument configXml ) : System
configFileName string The file name of the configuration file to load.
appName string App name (I.E. config file name or whatever), used for logging.
configXml System.Xml.XmlDocument The XML containing all the config information.
return System
        public Config(string configFileName, string appName, XmlDocument configXml)
            : this(configFileName, appName, configXml, false)
        {
        }

Same methods

Config::Config ( string appName ) : System
Config::Config ( string appName, XmlDocument configXml ) : System
Config::Config ( string configFileName, string appName ) : System
Config::Config ( string configFileName, string appName, XmlDocument configXml, bool treatMissingFileAsEmpty ) : System
Config::Config ( string configFileName, string appName, XmlDocument configXml, bool treatMissingFileAsEmpty, string>.IDictionary paramsByComponent, string>.IDictionary orderedParamsByComponent, string>.IDictionary outerXmlByComponent, string>.IDictionary innerXmlByComponent ) : System