PHP.Library.Data.PDOMySQLLibraryDescriptor.ParseConfig C# (CSharp) 메소드

ParseConfig() 보호된 메소드

Parses a configuration section belonging to the MySql library.
protected ParseConfig ( ConfigContextBase result, PhpConfigurationContext context, XmlNode section ) : ConfigContextBase
result PHP.Core.ConfigContextBase A configuration context.
context PHP.Core.PhpConfigurationContext The context of the configuration created by Phalanger Core.
section System.Xml.XmlNode A XML node containing the configuration or its part.
리턴 PHP.Core.ConfigContextBase
        protected override ConfigContextBase ParseConfig(ConfigContextBase result, PhpConfigurationContext context, XmlNode section)
        {
            // parses XML tree:
            ConfigUtils.ParseNameValueList(section, context, (PDOLocalConfig)result.Local, (PDOGlobalConfig)result.Global);

            return result;
        }