C# Class Mapsui.Providers.Wfs.Utilities.PathNode

This class represents an element-node in an XML document
Inheritance: IPathNode
ファイルを表示 Open project: pauldendulk/Mapsui Class Usage Examples

Private Properties

Property Type Description
PathNode System

Public Methods

Method Description
Matches ( XmlReader xmlReader ) : bool

This method evaluates, if the position of an XmlReader is at the element-node represented by the instance of this class. It compares pointers instead of literal values due to performance reasons. Therefore the name table of the XmlReader given as argument must be the one handed over to the constructor.

Private Methods

Method Description
PathNode ( string elementNsUri, string elementNodeName, NameTable nameTable ) : System

Initializes a new instance of the PathNode class.

Method Details

Matches() public method

This method evaluates, if the position of an XmlReader is at the element-node represented by the instance of this class. It compares pointers instead of literal values due to performance reasons. Therefore the name table of the XmlReader given as argument must be the one handed over to the constructor.
public Matches ( XmlReader xmlReader ) : bool
xmlReader System.Xml.XmlReader An XmlReader instance
return bool