Document.BindXml

BindXml(string)

Bind xml to document

public void BindXml(string file)
ParameterTypeDescription
fileStringThe xml file

See Also


BindXml(string, string)

Bind xml/xsl to document

public void BindXml(string xmlFile, string xslFile)
ParameterTypeDescription
xmlFileStringThe xml file.
xslFileStringThe xsl file if XSLT is used.

See Also


BindXml(Stream, Stream)

Bind xml/xsl to document

public void BindXml(Stream xmlStream, Stream xslStream)
ParameterTypeDescription
xmlStreamStreamThe xml stream.
xslStreamStreamThe xsl stream if XSLT is used.

See Also


BindXml(Stream, Stream, XmlReaderSettings)

Bind xml/xsl to document

public void BindXml(Stream xmlStream, Stream xslStream, XmlReaderSettings settings)
ParameterTypeDescription
xmlStreamStreamThe xml stream.
xslStreamStreamThe xsl stream if XSLT is used.
settingsXmlReaderSettingsThe xml reader settings.

See Also


BindXml(Stream)

Bind xml to document

public void BindXml(Stream stream)
ParameterTypeDescription
streamStreamThe xml stream.

See Also