XmlUtility Class

Definition

colection of functions for parsing an xml using SAX

[System.Runtime.InteropServices.ComVisible(false)]
public class XmlUtility
[<System.Runtime.InteropServices.ComVisible(false)>]
type XmlUtility = class
Public Class XmlUtility
Inheritance
XmlUtility
Attributes

Methods

GetFirstElementOnLevel(XmlTextReader)

get the first element on the current level

GoDownOneLevel(XmlTextReader)

read until we go down one level

GoUpOneLevel(XmlTextReader)

read until we go up one level

IsElement(XmlTextReader, String)

true if the current entity is an element with the given name

SelectChildrenByAttribute(XmlTextReader, String, String)

select children elements by attribute

SelectChildrenByName(XmlTextReader, String)

select children elements by name

SelectElementByName(XmlTextReader, String)

select the first eleemtn with the given name

SelectNextElement(XmlTextReader)

select the next element

SelectNextElement(XmlTextReader, String)

select the next element by name

SelectNextElementOnLevel(XmlTextReader)

select the next element on the same level

SelectNextSibling(XmlTextReader)

select the next sibbling of the current element

Applies to