CreateAppendElement – appending a XmlElement under another XmlNode

CreateAppendElement – appending a XmlElement under another XmlNode

' Create an XmlElement object with inner text and make it a child of another ' XmlNode.' Note: requires Imports System.XmlFunction CreateAppendElement(ByVal parentNode As XmlNode, ByVal name As String, _    Optional ByVal innerText As String = Nothing) As XmlElement    ' Create a new XmlElement object, set the return value.    Dim xmlEl As XmlElement = parentNode.OwnerDocument.CreateElement(name)    ' Set its inner text    If Not (innerText Is Nothing) Then xmlEl.InnerText = innerText    ' make it a child of its parent node.    parentNode.AppendChild(xmlEl)    ' Return the new node to the caller    Return xmlElEnd Function' Example: ' load a XML fileDim xmldoc As New XmlDocument()xmldoc.Load("Employees.xml")' create new Employee element and set its attributesDim xmlEl As XmlElement = CreateAppendElement(xmldoc.DocumentElement, _    "Employee")xmlEl.SetAttribute("id", "100")' create sub-elementsCreateAppendElement(xmlEl, "firstName", "Joe")CreateAppendElement(xmlEl, "lastName", "Doe")' Note: This code is taken from Francesco Balena's' "Programming Microsoft Visual Basic .NET" - MS Press 2002, ISBN 0735613753' You can read a free chapter of the book at ' http://www.vb2themax.com/HtmlDoc.asp?Table=Books&ID=101000

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several