共用方式為


HOW TO:控制命名空間前置詞 (Visual Basic) (LINQ to XML)

這個主題描述如何控制命名空間前置詞。

範例

描述

這個範例會宣告兩個命名空間。 它會指定 https://www.adventure-works.com 命名空間的前置詞為 aw,而 www.fourthcoffee.com 命名空間的前置詞為 fc。

程式碼

Imports <xmlns:aw="https://www.adventure-works.com">
Imports <xmlns:fc="www.fourthcoffee.com">

Module Module1

    Sub Main()
        Dim root As XElement = _
            <aw:Root>
                <fc:Child>
                    <aw:DifferentChild>other content</aw:DifferentChild>
                </fc:Child>
                <aw:Child2>c2 content</aw:Child2>
                <fc:Child3>c3 content</fc:Child3>
            </aw:Root>
        Console.WriteLine(root)
    End Sub

End Module

註解

這個範例會產生下列輸出:

<aw:Root xmlns:fc="www.fourthcoffee.com" xmlns:aw="https://www.adventure-works.com">
  <fc:Child>
    <aw:DifferentChild>other content</aw:DifferentChild>
  </fc:Child>
  <aw:Child2>c2 content</aw:Child2>
  <fc:Child3>c3 content</fc:Child3>
</aw:Root>

請參閱

概念

Visual Basic 中的命名空間 (LINQ to XML)