Method ExtXml.Desc(+ 1 overload)
Overload
Gets the first found descendant element.
public static XElement Desc(this XElement t, XName name)
Parameters
Returns
XElement
|
Overload(top)
Finds the first descendant element that has the specified attribute or value.
public static XElement Desc(this XElement t, XName name, XName attributeName, string attributeValue = null, bool ignoreCase = false)
Parameters
t (XElement) |
name (XName)
Element name. If |
attributeName (XName)
Attribute name. If |
attributeValue (string)
Attribute value (or Value). If |
ignoreCase (bool)
Case-insensitive attributeValue. |
Returns
XElement
|