(XmlElement Xml, string TagName)
| 23 | } |
| 24 | |
| 25 | public static bool IsXmlHasElement(XmlElement Xml, string TagName) |
| 26 | { |
| 27 | XmlNodeList tList = Xml.GetElementsByTagName(TagName); |
| 28 | |
| 29 | if (tList.Count == 0) |
| 30 | return false; |
| 31 | else |
| 32 | return true; |
| 33 | } |
| 34 | |
| 35 | public static XmlElement GetFirstElement(XmlElement Xml, string TagName) |
| 36 | { |
nothing calls this directly
no outgoing calls
no test coverage detected