C# Класс System.Xml.Xsl.Runtime.XmlNavNeverFilter

Never filter nodes.
Наследование: XmlNavigatorFilter
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Create ( ) : XmlNavigatorFilter

Return a singleton XmlNavigatorFilter that never filters any nodes.

IsFiltered ( XPathNavigator navigator ) : bool

Nodes are never filtered so always return false.

MoveToContent ( XPathNavigator navigator ) : bool

Reposition the navigator on the first child (attribute or non-attribute).

MoveToFirstAttributeContent ( XPathNavigator navigator ) : bool

Move to navigator's first attribute node. If no attribute's exist, move to the first content node. If no content nodes exist, return null. Otherwise, return navigator.

MoveToFollowing ( XPathNavigator navigator, XPathNavigator navEnd ) : bool

Reposition the navigator on the next following node.

MoveToFollowingSibling ( XPathNavigator navigator ) : bool

Reposition the navigator on the next sibling (no attributes).

MoveToNextAttributeContent ( XPathNavigator navigator ) : bool

If navigator is positioned on an attribute, move to the next attribute node. If there are no more attributes, move to the first content node. If navigator is positioned on a content node, move to the next content node. If there are no more attributes and content nodes, return null. Otherwise, return navigator.

MoveToNextContent ( XPathNavigator navigator ) : bool

Reposition the navigator on the next child (attribute or non-attribute).

MoveToPreviousSibling ( XPathNavigator navigator ) : bool

Reposition the navigator on the previous sibling (no attributes).

Приватные методы

Метод Описание
XmlNavNeverFilter ( ) : System.Xml

Constructor.

Описание методов

Create() публичный статический Метод

Return a singleton XmlNavigatorFilter that never filters any nodes.
public static Create ( ) : XmlNavigatorFilter
Результат XmlNavigatorFilter

IsFiltered() публичный Метод

Nodes are never filtered so always return false.
public IsFiltered ( XPathNavigator navigator ) : bool
navigator System.Xml.XPath.XPathNavigator
Результат bool

MoveToContent() публичный Метод

Reposition the navigator on the first child (attribute or non-attribute).
public MoveToContent ( XPathNavigator navigator ) : bool
navigator System.Xml.XPath.XPathNavigator
Результат bool

MoveToFirstAttributeContent() публичный статический Метод

Move to navigator's first attribute node. If no attribute's exist, move to the first content node. If no content nodes exist, return null. Otherwise, return navigator.
public static MoveToFirstAttributeContent ( XPathNavigator navigator ) : bool
navigator System.Xml.XPath.XPathNavigator
Результат bool

MoveToFollowing() публичный Метод

Reposition the navigator on the next following node.
public MoveToFollowing ( XPathNavigator navigator, XPathNavigator navEnd ) : bool
navigator System.Xml.XPath.XPathNavigator
navEnd System.Xml.XPath.XPathNavigator
Результат bool

MoveToFollowingSibling() публичный Метод

Reposition the navigator on the next sibling (no attributes).
public MoveToFollowingSibling ( XPathNavigator navigator ) : bool
navigator System.Xml.XPath.XPathNavigator
Результат bool

MoveToNextAttributeContent() публичный статический Метод

If navigator is positioned on an attribute, move to the next attribute node. If there are no more attributes, move to the first content node. If navigator is positioned on a content node, move to the next content node. If there are no more attributes and content nodes, return null. Otherwise, return navigator.
public static MoveToNextAttributeContent ( XPathNavigator navigator ) : bool
navigator System.Xml.XPath.XPathNavigator
Результат bool

MoveToNextContent() публичный Метод

Reposition the navigator on the next child (attribute or non-attribute).
public MoveToNextContent ( XPathNavigator navigator ) : bool
navigator System.Xml.XPath.XPathNavigator
Результат bool

MoveToPreviousSibling() публичный Метод

Reposition the navigator on the previous sibling (no attributes).
public MoveToPreviousSibling ( XPathNavigator navigator ) : bool
navigator System.Xml.XPath.XPathNavigator
Результат bool