Common NodeFilter implementations.
See Also: Inherited members from object.
static
|
AcceptAll
(System.Xml.XmlNode)Suppresses document-type and XML declaration nodes. |
|
static
|
Default
(System.Xml.XmlNode)Suppresses document-type and XML declaration nodes. |
|
static
|
SatifiesAll
(params Predicate<System.Xml.XmlNode>[])Accepts nodes that are accepted by all given filters. |
|
static
|
SatifiesAny
(params Predicate<System.Xml.XmlNode>[])Accepts nodes that are accepted by at least on of the given filters. |
Suppresses document-type and XML declaration nodes.Syntax
public static bool AcceptAll (System.Xml.XmlNode n)Parameters
- n
- Documentation for this section has not yet been entered.
Returns
Documentation for this section has not yet been entered.Remarks
since XMLUnit 2.6.0Requirements
Namespace: Org.XmlUnit.Diff
Assembly: xmlunit-core (in xmlunit-core.dll)
Assembly Versions: 2.10.0.241
Suppresses document-type and XML declaration nodes.Syntax
public static bool Default (System.Xml.XmlNode n)Parameters
- n
- Documentation for this section has not yet been entered.
Returns
Documentation for this section has not yet been entered.Remarks
This is the default used by AbstractDifferenceEngine and thus DOMDifferenceEngine.Requirements
Namespace: Org.XmlUnit.Diff
Assembly: xmlunit-core (in xmlunit-core.dll)
Assembly Versions: 2.10.0.241
Accepts nodes that are accepted by all given filters.Syntax
public static Predicate<System.Xml.XmlNode> SatifiesAll (params Predicate<System.Xml.XmlNode>[] predicates)Parameters
- predicates
- Documentation for this section has not yet been entered.
Returns
Documentation for this section has not yet been entered.Remarks
This short-circuits the given list of predicates and returns false as soon as the first predicate does.
since XMLUnit 2.9.2
Requirements
Namespace: Org.XmlUnit.Diff
Assembly: xmlunit-core (in xmlunit-core.dll)
Assembly Versions: 2.10.0.241
Accepts nodes that are accepted by at least on of the given filters.Syntax
public static Predicate<System.Xml.XmlNode> SatifiesAny (params Predicate<System.Xml.XmlNode>[] predicates)Parameters
- predicates
- Documentation for this section has not yet been entered.
Returns
Documentation for this section has not yet been entered.Remarks
This short-circuits the given list of predicates and returns true as soon as the first predicate does.
since XMLUnit 2.9.2
Requirements
Namespace: Org.XmlUnit.Diff
Assembly: xmlunit-core (in xmlunit-core.dll)
Assembly Versions: 2.10.0.241