この例のように、C#でXMLファイルのすべてのタグからすべての属性を繰り返し処理したいとします。未知のXML属性をすべて反復する
<TAG1 Attribute1="1234" Attribute2="1234" Attribute3="1234">
<TAG2 xpq="123" abc="000" lkj="123"/>
</TAG1>
XMLが非常に長く、タグと属性の名前が変更される可能性があります。 名前を知らずに反復する方法を見つけなければなりません。
は、誰も私のためのアイデアを持っています...私は
XmlTextReader reader = new XmlTextReader("C:\\PathToXml\File.xml");
var optionTitle = reader.Name;
var AttributeName = reader.LocalName;
var AttributeValue = reader.GetAttribute(AttributeName);
var itemValue = new ListViewItem(new[] { optionTitle, AttributeName, AttributeValue });
listView1.Items.Add(itemValue);
でそれをテストしてきた。しかし、私は唯一のタグ名と他には何を得ますか?
よう
XElement.Attributes
を使用して、すべての属性を取得 - http://stackoverflow.com/questions/6253565/loop-through-の重複をall-the-a-node-using-xdocumentを使用します。 –