XmlHelperImportDocument Method (XmlDocument, XmlElement, XmlDocument) |
Imports an xml document as a child element of the specified element
Namespace: com.softwarekey.Client.UtilsAssembly: PLUSManaged (in PLUSManaged.dll) Version: 5.23.4.0
Syntax public static void ImportDocument(
ref XmlDocument doc,
ref XmlElement element,
XmlDocument docToImport
)
Public Shared Sub ImportDocument (
ByRef doc As XmlDocument,
ByRef element As XmlElement,
docToImport As XmlDocument
)
public:
static void ImportDocument(
XmlDocument^% doc,
XmlElement^% element,
XmlDocument^ docToImport
)
Parameters
- doc
- Type: System.XmlXmlDocument
The destination XmlDocument object. - element
- Type: System.XmlXmlElement
The root XmlElement in the destination XmlDocument, under which the source document will be imported. - docToImport
- Type: System.XmlXmlDocument
The source XmlDocument document to import.
See Also