XName.ToString 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回擴充的 XML 名稱 (格式為 {namespace}localname
)。
public:
override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String
傳回
String,其中包含擴充的 XML 名稱 (格式為 {namespace}localname
)。
範例
下列範例會呼叫 WriteLine ,並 XName 傳遞 。 這會導致 ToString 呼叫 方法。
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>content</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