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

A dynamic stack of IXmlNavigators.
Exibir arquivo Open project: gbarnett/shared-source-cli-2.0

Public Methods

Method 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 method

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

Pop() public method

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

Push() public method

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

Reset() public method

Remove all navigators from the stack
public Reset ( ) : void
return void