Gewusst wie: Deklarieren und Verwenden von XML-Namespacepräfixen

Aktualisiert: November 2007

In diesem Beispiel wird gezeigt, wie das XML-Namespacepräfix ns importiert wird und als XML-Literal sowie als XML-Achseneigenschaften verwendet wird.

Beispiel

' 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

Kompilieren des Codes

Dieses Beispiel setzt Folgendes voraus:

Siehe auch

Referenz

Imports-Anweisung (XML-Namespace)

XML-Attribut Achseneigenschaft

XML-Value-Eigenschaft

XElement.Attributes

Weitere Ressourcen

Zugreifen auf XML in Visual Basic

XML in Visual Basic