Method Load
- Namespace
- SharpVectors.Dom.Css
- Assembly
- SharpVectors.Css.dll
Load(string)
Loads a XML document, compare to XmlDocument.Load()
public override void Load(string filename)
Parameters
filenamestring
Load(XmlReader)
Loads the XML document from the specified XmlReader.
public override void Load(XmlReader reader)
Parameters
readerXmlReaderThe XmlReader used to feed the XML data into the document.
Exceptions
- XmlException
There is a load or parse error in the XML. In this case, the document remains empty.
Load(Stream)
Loads the XML document from the specified stream.
public override void Load(Stream inStream)
Parameters
inStreamStreamThe stream containing the XML document to load.
Exceptions
- XmlException
There is a load or parse error in the XML. In this case, a FileNotFoundException is raised.