C# Class System.Xml.Xsl.Runtime.XmlNavigatorStack

A dynamic stack of IXmlNavigators.
Afficher le fichier Open project: gbarnett/shared-source-cli-2.0

Méthodes publiques

Méthode Description
Peek ( ) : XPathNavigator

Returns the navigator at the top of the stack without adjusting the stack pointer

Pop ( ) : XPathNavigator

Pop the topmost navigator and return it

Push ( XPathNavigator nav ) : void

Push a navigator onto the stack

Reset ( ) : void

Remove all navigators from the stack

Method Details

Peek() public méthode

Returns the navigator at the top of the stack without adjusting the stack pointer
public Peek ( ) : XPathNavigator
Résultat System.Xml.XPath.XPathNavigator

Pop() public méthode

Pop the topmost navigator and return it
public Pop ( ) : XPathNavigator
Résultat System.Xml.XPath.XPathNavigator

Push() public méthode

Push a navigator onto the stack
public Push ( XPathNavigator nav ) : void
nav System.Xml.XPath.XPathNavigator
Résultat void

Reset() public méthode

Remove all navigators from the stack
public Reset ( ) : void
Résultat void