public static string GetNamedChildNodeText(this IXmlNode node, string name)
 {
     return(node.GetNamedChildNode(name).GetText());
 }