NuGet.Settings.GetSection C# (CSharp) 메소드

GetSection() 개인적인 정적인 메소드

private static GetSection ( System.Xml.Linq.XElement parentElement, string section ) : System.Xml.Linq.XElement
parentElement System.Xml.Linq.XElement
section string
리턴 System.Xml.Linq.XElement
        private static XElement GetSection(XElement parentElement, string section)
        {
            section = XmlConvert.EncodeLocalName(section);
            return parentElement.Element(section);
        }