Méthode | Description | |
---|---|---|
ContainsChildElement ( this element, IEnumerable |
Determines if the given element contains a child element with any of the provided names
|
|
ContainsChildElement ( this element, IEnumerable |
Determines if the given element contains a child element with any of the provided names that satisfies the given predicate
|
|
ContainsChildElement ( this element, string name ) : bool |
Determines if the given element contains a child element of the given name
|
|
ContainsChildElement ( this element, string name, bool>.Func |
Determines if the given element contains a child element of the given name that satisfies the specified predicate
|
|
GetChildElement ( this parent, string name ) : System.Xml.Linq.XElement |
Get the first child element with the given name
|
|
GetChildElement ( this parent, string name, bool>.Func |
Get the first child element with the given name that satisfies the given predicate
|
|
GetChildElements ( this parent, string name ) : IEnumerable |
Get all child elements with the given name
|
|
GetChildElements ( this parent, string name, bool>.Func |
Get all child elements with the given name that satisfy the given predicate
|
public static ContainsChildElement ( this element, IEnumerable |
||
element | this | The element to search |
names | IEnumerable |
The child element names to search for |
Résultat | bool |
public static ContainsChildElement ( this element, IEnumerable |
||
element | this | The element to search |
names | IEnumerable |
The child element names to search for |
predicate | bool>.Func | An additional condition to check on descendant elements |
Résultat | bool |
public static ContainsChildElement ( this element, string name ) : bool | ||
element | this | The element to search |
name | string | The child element name to search for |
Résultat | bool |
public static ContainsChildElement ( this element, string name, bool>.Func |
||
element | this | The element to search |
name | string | The child element name to search for |
predicate | bool>.Func | An additional condition on descendant elements |
Résultat | bool |
public static GetChildElement ( this parent, string name ) : System.Xml.Linq.XElement | ||
parent | this | The element to search |
name | string | The child element name to search for |
Résultat | System.Xml.Linq.XElement |
public static GetChildElement ( this parent, string name, bool>.Func |
||
parent | this | The element to search |
name | string | The child element name to search for |
predicate | bool>.Func | Additional conditions over the desired child element |
Résultat | System.Xml.Linq.XElement |
public static GetChildElements ( this parent, string name ) : IEnumerable |
||
parent | this | The element to search |
name | string | The child element name to search for |
Résultat | IEnumerable |
public static GetChildElements ( this parent, string name, bool>.Func |
||
parent | this | The element to search |
name | string | The child element name to search for |
predicate | bool>.Func | The additional condition to satisfy |
Résultat | IEnumerable |