Méthode | Description | |
---|---|---|
DumpNode ( |
Produces a detailed dump of the given XmlNode instance and its descendents on the console output stream.
|
|
DumpNode ( |
Produces a detailed dump of the given XmlNode instance and its descendents via the indicated TextWriter.
|
|
NonValidatingParse ( Stream stream ) : |
Performs a non-validating parse of the indicated XML Stream discarding any errors generated.
|
|
NonValidatingParse ( string xml ) : |
Performs a non-validating parse of the indicated XML String discarding any errors generated.
|
|
ValidatingParse ( int grammer, Stream stream, |
Performs a validating parse of the indicated XML string using the most optimal technique given the mode. If the type of grammar is unknown then a non-validating parse is done first and the document inspected to see if it references a DOCTYPE.
|
|
ValidatingParse ( int grammer, string xml, |
Performs a validating parse of the indicated XML string using the most optimal technique given the mode. If the type of grammar is unknown then a non-validating parse is done first and the document inspected to see if it references a DOCTYPE.
|
Méthode | Description | |
---|---|---|
DumpNode ( |
Recursively dumps out an XmlNode and its descendents to the indicated TextWriter in a simple indented style.
|
|
XmlUtility ( ) : System |
Ensures no instances can be constructed.
|
public static DumpNode ( |
||
node | The |
|
Résultat | void |
public static DumpNode ( |
||
node | The |
|
writer | The |
|
Résultat | void |
public static NonValidatingParse ( Stream stream ) : |
||
stream | Stream | The XML |
Résultat |
public static NonValidatingParse ( string xml ) : |
||
xml | string | The XML |
Résultat |
public static ValidatingParse ( int grammer, Stream stream, |
||
grammer | int | Indicates only schema based documents to be processed. |
stream | Stream | The XML |
schemas | The collection of cached schemas for validation | |
resolver | The |
|
eventHandler | ValidationEventHandler | The |
Résultat |
public static ValidatingParse ( int grammer, string xml, |
||
grammer | int | Indicates only schema based documents to be processed. |
xml | string | The XML |
schemas | The collection of cached schemas for validation | |
resolver | The |
|
eventHandler | ValidationEventHandler | The |
Résultat |