XmlUtility Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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, String) |
select the next element by name |
SelectNextElement(XmlTextReader) |
select the next element |
SelectNextElementOnLevel(XmlTextReader) |
select the next element on the same level |
SelectNextSibling(XmlTextReader) |
select the next sibbling of the current element |