Navigators
X
XmlAttributeNavigator
public static class XmlAttributeNavigator
{
public static IXmlAttribute GetByAttributeValue(IXmlAttributeValue attributeValue);
}
See also: IXmlAttribute, IXmlAttributeValue
Navigate up the tree to an instance of IXmlAttribute
, given an IXmlAttributeValue
. Returns null
if it can't find the IXmlAttribute
.
XmlTagContainerNavigator
public static class XmlTagContainerNavigator
{
public static IXmlTagContainer GetByTag(IXmlTag tag);
}
See also: IXmlTag, IXmlTagContainer
Navigate up the tree to an instance of IXmlTagContainerNavigator
given an IXmlTag
. Returns null
if it can't find the IXmlTagContainer
.
XmlTagNavigator
public static class XmlTagNavigator
{
public static IXmlTag GetByAttribute(IXmlAttribute attribute);
public static IXmlTag GetByTag(IXmlTag tag);
public static IXmlTag GetByTagFooter(IXmlTagFooter footer);
public static IXmlTag GetByTagHeader(IXmlTagHeader header);
}
See also: IXmlAttribute, IXmlTag, IXmlTagFooter, IXmlTagHeader
Navigate up the tree to an instance of IXmlTag
, given an instance of IXmlAttribute
, IXmlTag
, IXmlTagFooter
or IXmlTagHeader
. Returns null
if it can't find the IXmlTag
.
Last modified: 04 July 2023