使用 XmlDocument 访问 XML 属性
使用 C# 的 XmlDocument 读取 XML 属性可以通过简单的方法来实现。考虑以下 XML 文档:
<?xml version="1.0" encoding="utf-8" ?> <MyConfiguration xmlns="http://tempuri.org/myOwnSchema.xsd" SuperNumber="1" SuperString="whipcream"> <Other stuff /> </MyConfiguration>
要检索属性 SuperNumber 和 SuperString,您可以使用以下代码:
// Load the XML document XmlDocument doc = new XmlDocument(); doc.Load("myConfig.xml"); // Get the specified element by its tag name XmlNodeList elemList = doc.GetElementsByTagName("MyConfiguration"); // Iterate through the matching elements for (int i = 0; i < elemList.Count; i++) { // Access the attribute value string attrVal = elemList[i].Attributes["SuperString"].Value; }
此代码片段使用 GetElementsByTagName 方法来查找 MyConfiguration元素。然后,它迭代结果列表并使用 Attributes 属性访问“SuperString”属性。属性对象的 Value 属性提供了实际的属性值。
通过利用这种方法,您可以使用 C# 中的 XmlDocument 类轻松读取和处理 XML 属性。
以上是如何使用C#的XmlDocument访问XML属性?的详细内容。更多信息请关注PHP中文网其他相关文章!