InternetUnicodeHTMLCSSScalable Vector Graphics (SVG)Extensible Markup Language (xml) ASP.Net TOCASP.NetMiscellaneous Feature ASP.NET Scripting Visual Basic .NET TOCVB .NET Language Referencena VB.Net KeywordsVB.Net DataVB.Net Declared ElementVB.Net DelegatesVB.Net Object CharacteristicsVB.Net EventsVB.Net InterfacesVB.Net LINQVB.Net Object and ClassVB.Net Operators and ExpressionsVB.Net ProceduresVB.Net StatementsVB.Net Strings Draft for Information Only
Content
VB.NET XML
VB.NET XMLVisual Basic provides integrated language support that enables it to interact with LINQ to XML. See alsoOverview of LINQ to XML in Visual BasicVisual Basic provides support for LINQ to XML through XML literals and XML axis properties. This enables you to use a familiar, convenient syntax for working with XML in your Visual Basic code. XML literals enable you to include XML directly in your code. XML axis properties enable you to access child nodes, descendant nodes, and attributes of an XML literal. For more information, see XML Literals Overview and Accessing XML in Visual Basic. LINQ to XML is an in-memory XML programming API designed specifically to take advantage of Language-Integrated Query (LINQ). Although you can call the LINQ APIs directly, only Visual Basic enables you to declare XML literals and directly access XML axis properties. Note XML literals and XML axis properties are not supported in declarative code in an ASP.NET page. To use Visual Basic XML features, put your code in a code-behind page in your ASP.NET application. Play button For related video demonstrations, see How Do I Get Started with LINQ to XML? and How Do I Create Excel Spreadsheets using LINQ to XML?. Creating XMLThere are two ways to create XML trees in Visual Basic. You can declare an XML literal directly in code, or you can use the LINQ APIs to create the tree. Both processes enable the code to reflect the final structure of the XML tree. For example, the following code example creates an XML element: VBDim contact1 As XElement = <contact> <name>Patrick Hines</name> <phone type="home">206-555-0144</phone> <phone type="work">425-555-0145</phone> </contact> For more information, see Creating XML in Visual Basic. Accessing and Navigating XMLVisual Basic provides XML axis properties for accessing and navigating XML structures. These properties enable you to access XML elements and attributes by specifying the XML child element names. Alternatively, you can explicitly call the LINQ methods for navigating and locating elements and attributes. For example, the following code example uses XML axis properties to refer to the attributes and child elements of an XML element. The code example uses a LINQ query to retrieve child elements and output them as XML elements, effectively performing a transform. VB' Place Imports statements at the top of your program. Imports <xmlns:ns="http://SomeNamespace"> Module Sample1 Sub SampleTransform() ' Create test by using a global XML namespace prefix. Dim contact = <ns:contact> <ns:name>Patrick Hines</ns:name> <ns:phone ns:type="home">206-555-0144</ns:phone> <ns:phone ns:type="work">425-555-0145</ns:phone> </ns:contact> Dim phoneTypes = <phoneTypes> <%= From phone In contact.<ns:phone> Select <type><%= phone.@ns:type %></type> %> </phoneTypes> Console.WriteLine(phoneTypes) End Sub End Module For more information, see Accessing XML in Visual Basic. XML NamespacesVisual Basic enables you to specify an alias to a global XML namespace by using the Imports statement. The following example shows how to use the Imports statement to import an XML namespace: VBImports <xmlns:ns="http://someNamespace"> You can use an XML namespace alias when you access XML axis properties and declare XML literals for XML documents and elements. You can retrieve an XNamespace object for a particular namespace prefix by using the GetXmlNamespace Operator. For more information, see Imports Statement (XML Namespace). Using XML Namespaces in XML LiteralsThe following example shows how to create an XElement object that uses the global namespace ns: VBDim contact1 As XElement = <ns:contact> <ns:name>Patrick Hines</ns:name> <ns:phone type="home">206-555-0144</ns:phone> <ns:phone type="work">425-555-0145</ns:phone> </ns:contact> Console.WriteLine(contact1) The Visual Basic compiler translates XML literals that contain XML namespace aliases into equivalent code that uses the XML notation for using XML namespaces, with the xmlns attribute. When compiled, the code in the previous section's example produces essentially the same executable code as the following example: VBDim contact2 As XElement = <ns1:contact xmlns:ns1="http://someNamespace"> <ns1:name>Patrick Hines</ns1:name> <ns1:phone type="home">206-555-0144</ns1:phone> <ns1:phone type="work">425-555-0145</ns1:phone> </ns1:contact> Console.WriteLine(contact2) Using XML Namespaces in XML Axis PropertiesXML namespaces declared in XML literals are not available for use in XML axis properties. However, global namespaces can be used with the XML axis properties. Use a colon to separate the XML namespace prefix from the local element name. Following is an example: VBConsole.WriteLine("Contact name is: " & contact1.<ns:name>.Value) See alsoCreating XML in Visual BasicVisual Basic enables you to use XML literals directly in your code. The XML literal syntax represents LINQ to XML objects, and it is similar to the XML 1.0 syntax. This makes it easier to create XML elements, documents, and fragments programmatically because your code has the same structure as the final XML. See alsoXML Literals OverviewAn XML literal allows you to incorporate XML directly into your Visual Basic code. The XML literal syntax represents LINQ to XML objects, and it is the similar to the XML 1.0 syntax. This makes it easier to create XML elements and documents programmatically because your code has the same structure as the final XML. Visual Basic compiles XML literals into LINQ to XML objects. LINQ to XML provides a simple object model for creating and manipulating XML, and this model integrates well with Language-Integrated Query (LINQ). For more information, see XElement. You can embed a Visual Basic expression in an XML literal. At run time, your application creates a LINQ to XML object for each literal, incorporating the values of the embedded expressions. This lets you specify dynamic content inside an XML literal. For more information, see Embedded Expressions in XML. For more information about the differences between the XML literal syntax and the XML 1.0 syntax, see XML Literals and the XML 1.0 Specification. Simple LiteralsYou can create a LINQ to XML object in your Visual Basic code by typing or pasting in valid XML. An XML element literal returns an XElement object. For more information, see XML Element Literal and XML Literals and the XML 1.0 Specification. The following example creates an XML element that has several child elements. VBDim contact1 As XElement = <contact> <name>Patrick Hines</name> <phone type="home">206-555-0144</phone> <phone type="work">425-555-0145</phone> </contact> You can create an XML document by starting an XML literal with <?xml version="1.0"?>, as shown in the following example. An XML document literal returns an XDocument object. For more information, see XML Document Literal. VBDim contactDoc As XDocument = <?xml version="1.0"?> <contact> <name>Patrick Hines</name> <phone type="home">206-555-0144</phone> <phone type="work">425-555-0145</phone> </contact> Note The XML literal syntax in Visual Basic is not identical to the syntax in the XML 1.0 specification. For more information, see XML Literals and the XML 1.0 Specification. Line ContinuationAn XML literal can span multiple lines without using line continuation characters (the space-underscore-enter sequence). This makes it easier to compare XML literals in code with XML documents. The compiler treats line continuation characters as part of an XML literal. Therefore, you should use the space-underscore-enter sequence only when it belongs in the LINQ to XML object. However, you do need line continuation characters if you have a multiline expression in an embedded expression. For more information, see Embedded Expressions in XML. Embedding Queries in XML LiteralsYou can use a query in an embedded expression. When you do this, the elements returned by the query are added to the XML element. This lets you add dynamic content, such as the result of a user's query, to an XML literal. For example, the following code uses an embedded query to create XML elements from the members of the phoneNumbers2 array and then add those elements as children of contact2. VBPublic Class XmlSamples Public Sub Main() ' Initialize the objects. Dim phoneNumbers2 As Phone() = { New Phone("home", "206-555-0144"), New Phone("work", "425-555-0145")} ' Convert the data contained in phoneNumbers2 to XML. Dim contact2 = <contact> <name>Patrick Hines</name> <%= From p In phoneNumbers2 Select <phone type=<%= p.Type %>><%= p.Number %></phone> %> </contact> Console.WriteLine(contact2) End Sub End Class Class Phone Public Type As String Public Number As String Public Sub New(ByVal t As String, ByVal n As String) Type = t Number = n End Sub End Class How the Compiler Creates Objects from XML LiteralsThe Visual Basic compiler translates XML literals into calls to the equivalent LINQ to XML constructors to build up the LINQ to XML object. For example, the Visual Basic compiler will translate the following code example into a call to the XProcessingInstruction constructor for the XML version instruction, calls to the XElement constructor for the <contact>, <name>, and <phone> elements, and calls to the XAttribute constructor for the type attribute. Specifically, given the attributes in the following sample, the Visual Basic compiler will call the XAttribute(XName, Object) constructor twice. The first will pass the value type for the name parameter and the value home for the value parameter. The second will also pass the value type for the name parameter, but the value work for the value parameter. VBDim contactDoc As XDocument = <?xml version="1.0"?> <contact> <name>Patrick Hines</name> <phone type="home">206-555-0144</phone> <phone type="work">425-555-0145</phone> </contact> See also
Embedded Expressions in XMLEmbedded expressions enable you to create XML literals that contain expressions that are evaluated at run time. The syntax for an embedded expression is <%= expression %>, which is the same as the syntax used in ASP.NET. For example, you can create an XML element literal, combining embedded expressions with literal text content. VBDim isbnNumber As String = "12345" Dim modifiedDate As String = "3/5/2006" Dim book As XElement = <book category="fiction" isbn=<%= isbnNumber %>> <modifiedDate><%= modifiedDate %></modifiedDate> </book> If isbnNumber contains the integer 12345 and modifiedDate contains the date 3/5/2006, when this code executes, the value of book is: XML<book category="fiction" isbn="12345"> <modifiedDate>3/5/2006</modifiedDate> </book> Embedded Expression Location and ValidationEmbedded expressions can appear only at certain locations within XML literal expressions. The expression location controls which types the expression can return and how Nothing is handled. The following table describes the allowed locations and types of embedded expressions.
If you enable Option Strict, the compiler checks that the type of each embedded expression widens to the required type. The only exception is for the root element of an XML document, which is verified when the code runs. If you compile without Option Strict, you can embed expressions of type Object and their type is verified at run time. In locations where content is optional, embedded expressions that contain Nothing are ignored. This means you do not have to check that element content, attribute values, and array elements are not Nothing before you use an XML literal. Required values, such as element and attribute names, cannot be Nothing. For more information about using an embedded expression in a particular type of literal, see XML Document Literal, XML Element Literal. Scoping RulesThe compiler converts each XML literal into a constructor call for the appropriate literal type. The literal content and embedded expressions in an XML literal are passed as arguments to the constructor. This means that all Visual Basic programming elements available to an XML literal are also available to its embedded expressions. Within an XML literal, you can access the XML namespace prefixes declared with the Imports statement. You can declare a new XML namespace prefix, or shadow an existing XML namespace prefix, in an element by using the xmlns attribute. The new namespace is available to the child nodes of that element, but not to XML literals in embedded expressions. Note When you declare an XML namespace prefix by using the xmlns namespace attribute, the attribute value must be a constant string. In this regard, using the xmlns attribute is like using the Imports statement to declare an XML namespace. You cannot use an embedded expression to specify the XML namespace value. See also
Names of Declared XML Elements and AttributesThis topic provides Visual Basic guidelines for naming XML elements and attributes in XML literals. In an XML literal, you can specify a local name or a qualified name. A qualified name consists of an XML namespace prefix, a colon, and a local name. For more information about XML namespace prefixes, see XML Element Literal. RulesA local name of an element or attribute in Visual Basic must adhere to the following rules.
In addition, you should adhere to the following guideline.
Name Length GuidelinesAs a practical matter, a name should be as short as possible while still clearly identifying the nature of the element. This improves the readability of your code and reduces line length and source-file size. However, your name should not be so short that it does not adequately describe the element or how your code uses it. This is important for the readability of your code. If somebody else is trying to understand it, or if you yourself are looking at it a long time after you wrote it, appropriate element names can save time. Case Sensitivity in NamesXML element names are case sensitive. This means that when the Visual Basic compiler compares two names that differ in alphabetical case only, it interprets them as different names. For example, it interprets ABC and abc as referring to separate elements. XML NamespacesWhen creating an XML element literal, you can specify the XML namespace prefix for the element name. For more information, see XML Element Literal. See alsoXML Literals and the XML 1.0 SpecificationThe XML literal syntax in Visual Basic supports most of the Extensible Markup Language (XML) 1.0 specification. For details about the XML 1.0 specification, see Extensible Markup Language (XML) 1.0 on the W3C Web site. What Visual Basic Does Not Support
Extra Features That Visual Basic Supports
See alsoWhite Space in XML LiteralsThe Visual Basic compiler incorporates only the significant white space characters from an XML literal when it creates a LINQ to XML object. The insignificant white space characters are not incorporated. Significant and Insignificant White SpaceWhite space characters in XML literals are significant in only three areas:
Otherwise, the compiler treats white space characters as insignificant and does not include then in the LINQ to XML object for the literal. To include insignificant white space in an XML literal, use an embedded expression that contains a string literal with the white space. Note If the xml:space attribute appears in an XML element literal, the Visual Basic compiler includes the attribute in the XElement object, but adding this attribute does not change how the compiler treats white space. ExamplesThe following example contains two XML elements, outer and inner. Both elements contain white space in their text content. The white space in the outer element is insignificant because it contains only white space and an XML element. The white space in the inner element is significant because it contains white space and text. VBDim example As XElement = <outer> <inner> Inner text </inner> </outer> Console.WriteLine(example) When run, this code displays the following text. XML<outer> <inner> Inner text </inner> </outer> See alsoHow to: Create XML LiteralsYou 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 LINQ to XML APIs to create LINQ to XML objects. For more information, see XElement. To create an XML element
To create an XML document
See alsoHow to: Embed Expressions in XML LiteralsYou can combine XML literals with embedded expressions to create an XML document, fragment, or element that contains content created at run time. The following examples demonstrate how to use embedded expressions to populate element content, attributes, and element names at run time. The syntax for an embedded expression is <%= exp %>, which is the same syntax that ASP.NET uses. For more information, see Embedded Expressions in XML. You can also use the LINQ to XML APIs to create LINQ to XML objects. For more information, see XElement. ProceduresTo insert text as element content
To insert text as an attribute value
To insert text for an element name
See alsoManipulating XML in Visual BasicYou can use XML literals to load XML from an external source such as a string, file, or stream. You can then use LINQ to XML to manipulate the XML and use Language-Integrated Query (LINQ) to query the XML. Related Sections
XML Axis Properties
Overview of LINQ to XML in Visual Basic
Creating XML in Visual Basic
Accessing XML in Visual Basic
XML See alsoHow to: Load XML from a File, String, or StreamYou can create XML Literals and populate them with the contents from an external source such as a file, a string, or a stream by using several methods. These methods are shown in the following examples. Note Your computer might show different names or locations for some of the Visual Studio user interface elements in the following instructions. The Visual Studio edition that you have and the settings that you use determine these elements. For more information, see Personalizing the IDE. To load XML from a file
To load XML from a string
To load XML from a stream
The following code example shows the use of the ReadFrom method to populate an XDocument object with XML from an XML stream. VBDim reader = System.Xml.XmlReader.Create(My.Application.Info.DirectoryPath & "\..\..\Data\books.xml") reader.MoveToContent() Dim inputXml = XDocument.ReadFrom(reader) Console.WriteLine(inputXml) See also
How to: Transform XML by Using LINQXML Literals make it easy to read XML from one source and transform it to a new XML format. You can take advantage of LINQ queries to retrieve the content to transform, or change content in an existing document to a new XML format. The example in this topic transforms content from an XML source document to HTML to be viewed in a browser. Note Your computer might show different names or locations for some of the Visual Studio user interface elements in the following instructions. The Visual Studio edition that you have and the settings that you use determine these elements. For more information, see Personalizing the IDE. To transform an XML document
See also
How to: Modify XML LiteralsVisual Basic provides convenient ways to modify XML literals. You can add or delete elements and attributes, and you can also replace an existing element with a new XML element. This topic provides several examples of how to modify an existing XML literal. To modify the value of an XML literal
To add an attribute to an XML literal
To add an element to an XML literal
To remove an element or attribute from an XML literal
To modify an XML literal
See also
Accessing XML in Visual BasicVisual Basic provides XML axis properties for accessing and navigating LINQ to XML structures. These properties use a special syntax to enable you to access elements and attributes by specifying the XML names. The following table lists the language features that enable you to access XML elements and attributes in Visual Basic. XML Axis Properties
Related Sections
XML Axis Properties
Overview of LINQ to XML in Visual Basic
Creating XML in Visual Basic
Manipulating XML in Visual Basic
XML How to: Access XML Descendant ElementsThis example shows how to use a descendant axis property to access all XML elements that have a specified name and that are contained under an XML element. In particular, it uses the Value property to get the value of the first element in the collection that the name descendant axis property returns. The name descendant axis property gets all elements named name that are contained in the contacts object. This example also uses the phone descendant axis property to access all descendants named phone that are contained in the contacts object. ExampleVBDim contacts As XElement = <contacts> <contact> <name>Patrick Hines</name> <phone type="home">206-555-0144</phone> <phone type="work">425-555-0145</phone> </contact> </contacts> Console.WriteLine("Name: " & contacts...<name>.Value) Dim phoneTypes As XElement = <phoneTypes> <%= From phone In contacts...<phone> Select <type><%= phone.@type %></type> %> </phoneTypes> Console.WriteLine(phoneTypes) Compiling the CodeThis example requires:
See also
How to: Access XML Child ElementsThis example shows how to use a child axis property to access all XML child elements that have a specified name in an XML element. In particular, it uses the Value property to get the value of the first element in the collection that the name child axis property returns. The name child axis property gets all child elements named phone in the contact object. This example also uses the phone child axis property to access all child elements named phone that are contained in the contact object. ExampleVBDim contact As XElement = <contact> <name>Patrick Hines</name> <phone type="home">206-555-0144</phone> <phone type="work">425-555-0145</phone> </contact> Console.WriteLine("Contact name: " & contact.<name>.Value) Dim phoneTypes As XElement = <phoneTypes> <%= From phone In contact.<phone> Select <type><%= phone.@type %></type> %> </phoneTypes> Console.WriteLine(phoneTypes) Compiling the CodeThis example requires:
See alsoHow to: Access XML AttributesThis example shows how to use an attribute axis property to access XML attributes in an XML element by name. In particular, it uses the type attribute axis property to access the attribute named type in the phone object. ExampleVBDim phone As XElement = <phone type="home">206-555-0144</phone> Console.WriteLine("Type: " & phone.@type) See alsoHow to: Declare and Use XML Namespace PrefixesThis example shows how to import the XML namespace prefix ns and use it in an XML literal and XML axis properties. ExampleVB' Place Imports statements at the top of your program. Imports <xmlns:ns="http://SomeNamespace"> Module Sample1 Sub SampleTransform() ' Create test by using a global XML namespace prefix. Dim contact = <ns:contact> <ns:name>Patrick Hines</ns:name> <ns:phone ns:type="home">206-555-0144</ns:phone> <ns:phone ns:type="work">425-555-0145</ns:phone> </ns:contact> Dim phoneTypes = <phoneTypes> <%= From phone In contact.<ns:phone> Select <type><%= phone.@ns:type %></type> %> </phoneTypes> Console.WriteLine(phoneTypes) End Sub End Module Compiling the CodeThis example requires:
See also
Source/Reference
©sideway ID: 201000011 Last Updated: 10/11/2020 Revision: 0 Ref: ![]() References
![]() Latest Updated Links
![]() ![]() ![]() ![]() ![]() |
![]() Home 5 Business Management HBR 3 Information Recreation Hobbies 8 Culture Chinese 1097 English 339 Travel 18 Reference 79 Computer Hardware 254 Software Application 213 Digitization 37 Latex 52 Manim 205 KB 1 Numeric 19 Programming Web 289 Unicode 504 HTML 66 CSS 65 SVG 46 ASP.NET 270 OS 431 DeskTop 7 Python 72 Knowledge Mathematics Formulas 8 Set 1 Logic 1 Algebra 84 Number Theory 206 Trigonometry 31 Geometry 34 Calculus 67 Engineering Tables 8 Mechanical Rigid Bodies Statics 92 Dynamics 37 Fluid 5 Control Acoustics 19 Natural Sciences Matter 1 Electric 27 Biology 1 |
Copyright © 2000-2025 Sideway . All rights reserved Disclaimers last modified on 06 September 2019