C# Class WebMarkupMin.Core.Parsers.XmlParser

XML parser
Datei anzeigen Open project: Taritsyn/WebMarkupMin Class Usage Examples

Public Methods

Method Description
Parse ( string content ) : void

Parses XML content

XmlParser ( XmlParsingHandlers handlers ) : System

Constructs instance of XML parser

Private Methods

Method Description
IsTagFirstChar ( char value ) : bool

Checks whether the character is valid first character of XML tag name

ParseAttributes ( string attributesString ) : IList

Parses a attributes

ProcessCdataSection ( ) : bool

Process a CDATA sections

ProcessEndTag ( ) : bool

Process a end tag

ProcessProcessingInstruction ( ) : bool

Process a XML declaration and processing instructions

ProcessStartTag ( ) : bool

Process a start tag

ProcessText ( ) : void

Process a text

Method Details

Parse() public method

Parses XML content
public Parse ( string content ) : void
content string XML content
return void

XmlParser() public method

Constructs instance of XML parser
public XmlParser ( XmlParsingHandlers handlers ) : System
handlers XmlParsingHandlers XML parsing handlers
return System