| title | How to: Create XML Literals (Visual Basic) | |
|---|---|---|
| ms.custom | ||
| ms.date | 07/20/2015 | |
| ms.prod | .net | |
| ms.reviewer | ||
| ms.suite | ||
| ms.technology |
|
|
| ms.tgt_pltfrm | ||
| ms.topic | article | |
| helpviewer_keywords |
|
|
| ms.assetid | 573a6db5-b14d-4e42-b356-8cc7e2d77745 | |
| caps.latest.revision | 17 | |
| author | dotnet-bot | |
| ms.author | dotnetcontent |
You can create an XML document, fragment, or element directly in code by using an XML literal. The examples in this topic demonstrate how to create an XML element that has three child elements, and how to create an XML document.
You can also use the [!INCLUDEsqltecxlinq] APIs to create [!INCLUDEsqltecxlinq] objects. For more information, see xref:System.Xml.Linq.XElement.
-
Create the XML inline by using the XML literal syntax, which is the same as the actual XML syntax.
[!code-vbVbXMLSamples#5]
Run the code. The output of this code is:
<contact><name>Patrick Hines</name><phone type="home">206-555-0144</phone><phone type="work">425-555-0145</phone></contact>
-
Create the XML document inline. The following code creates an XML document that has literal syntax, an XML declaration, a processing instruction, a comment, and an element that contains another element.
[!code-vbVbXMLSamples#30]
Run the code. The output of this code is:
<?xml-stylesheet type="text/xsl" href="show_book.xsl"?><!-- Tests that the application works. --><books><book/></books>
XML
Creating XML in Visual Basic
XML Element Literal
XML Document Literal