PHP.Core.LibrariesConfigurationList.AddSection C# (CSharp) Method

AddSection() public method

Add class library configuration section to the list to be processed once libraries are loaded.
public AddSection ( XmlNode sectionNode ) : void
sectionNode System.Xml.XmlNode
return void
        public void AddSection(XmlNode/*!*/sectionNode)
        {
            Debug.Assert(sectionNode != null);
            if (this.sections == null)
                this.sections = new List<XmlNode>();

            this.sections.Add(sectionNode);
        }