XmlDOMImplementation.Load Method
| Explanation | Read XML from the Reader object . It is used when loading an XML file from a web server or file . | |
| Call format | var xmldoc = domimpl.Load( reader ) | |
| Return value | XmlDocument object | |
| Arguments | Object reader | ReaderObject to read from (object that can use ReadLine method) |
| Exception | XML-1 | XML parse error |
| XML-2 | No valid Read object specified | |
| XML-3 | Does not support the ReadLine () method | |
| XML-13 | Input XML is empty | |
| Example of use | | |
| Related item | XmlDocument class Parse method | |