XAttribute.ToString メソッド

定義

現在の XAttribute オブジェクトを文字列形式に変換します。

public:
 override System::String ^ ToString();
public override string ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String

戻り値

String

XML 文字列形式の属性とその値を格納している String

次の例では、複数の属性を持つ要素を作成します。 次に、属性を取得し、このメソッドを呼び出して属性とその内容を表示します。

XElement root = new XElement("Root",  
    new XAttribute("Att1", "content1"),  
    new XAttribute("Att2", "content2"),  
    new XAttribute("Att3", "content3")  
);  
XAttribute att = root.Attribute("Att2");  
Console.WriteLine(att.ToString());  
Dim root As XElement = <Root Att1="content1" Att2="content2" Att3="content3"/>  
Dim att As XAttribute = root.Attribute("Att2")  
Console.WriteLine(att.ToString())  

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

Att2="content2"  

注釈

このメソッドは、次の形式 AttributeName="content"の文字列を返します。

警告

このメソッドが呼び出され XAttribute 、制御文字が含まれている場合、16 進数の値0x0B、無効な文字のようなメッセージで例外がスローされます。

適用対象

こちらもご覧ください