Bookstore.BooksImporter.BooksImporterUI.GetInnerXml C# (CSharp) Метод

GetInnerXml() статический приватный Метод

static private GetInnerXml ( XmlNode node, string xpath ) : string
node System.Xml.XmlNode
xpath string
Результат string
        static string GetInnerXml(XmlNode node, string xpath)
        {
            XmlNode innerNode = node.SelectSingleNode(xpath);
            if (innerNode != null)
            {
                return innerNode.InnerText;
            }

            return null;
        }
    }