XName.LocalName プロパティ

定義

名前のローカル (非修飾) 部を取得します。

public:
 property System::String ^ LocalName { System::String ^ get(); };
public string LocalName { get; }
member this.LocalName : string
Public ReadOnly Property LocalName As String

プロパティ値

修飾名のローカル (非修飾) 部を含む String

次の例は、このプロパティの使用方法を示しています。

XNamespace ns = "http://www.adventure-works.com";
XElement root = new XElement(ns + "Root", "content");
Console.WriteLine(root.Name);
Console.WriteLine(root.Name.LocalName);
Console.WriteLine(root.Name.Namespace);
Imports <xmlns="http://www.adventure-works.com">

Module Module1
    Sub Main()
        Dim root As XElement = <Root/>
        Console.WriteLine(root.Name)
        Console.WriteLine(root.Name.LocalName)
        Console.WriteLine(root.Name.Namespace)
    End Sub
End Module

この例を実行すると、次の出力が生成されます。

{http://www.adventure-works.com}Root
Root
http://www.adventure-works.com

注釈

このプロパティは、 ではないことが保証されます null

適用対象

こちらもご覧ください