xmlDocument.load
Jump to navigation
Jump to search
Method
Server and Client
Online and Offline
Available since Server 1.0.0, Client 1.0.0
void xmlDocument.load(Stream stream)
The xmlDocument.load method is used to load a stream into an XML-ready object.
Parameters
1) | Stream | stream | The stream object to read the XML data from. |
Return
void | This method doesn't return a value. |
Types
Shared
XmlDocument
Notes
There aren't any notes for this method.
Examples
Example 1 - JavaScript:
var file = openFile("filename.xml"); var xml = new XmlDocument(); xml.load(file);
Compatibility
There isn't any compatibility information for this method.