c# – 如何使用前缀创建XmlElement属性?

前端之家收集整理的这篇文章主要介绍了c# – 如何使用前缀创建XmlElement属性?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要能够在xml元素中定义带有前缀的属性.

例如…

<nc:Person s:id="ID_Person_01"></nc:Person>

为了做到这一点,我虽然以下会有效.

XmlElement TempElement = XmlDocToRef.CreateElement("nc:Person","http://niem.gov/niem/niem-core/2.0");
TempElement.SetAttribute("s:id","http://niem.gov/niem/structures/2.0","ID_Person_01");

不幸的是,当我收到下面的错误时,XmlElement.SetAttribute(string,string,string)似乎不支持解析前缀.

The ‘:’ character,hexadecimal value 0x3A,cannot be included in a name.

如何定义带前缀的属性

解决方法

如果您已在根节点中声明了命名空间,则只需更改SetAttribute调用以使用未加前缀的属性名称.因此,如果您的根节点定义了这样的命名空间:
<People xmlns:s='http://niem.gov/niem/structures/2.0'>

您可以执行此操作,该属性获取您已经建立的前缀:

// no prefix on the first argument - it will be rendered as
// s:id='ID_Person_01'
TempElement.SetAttribute("id","ID_Person_01");

如果您还没有声明命名空间(及其前缀),那么三字符串XmlDocument.CreateAttribute重载将为您完成:

// Adds the declaration to your root node
var attribute = xmlDocToRef.CreateAttribute("s","id","http://niem.gov/niem/structures/2.0");
attribute.InnerText = "ID_Person_01"
TempElement.SetAttributeNode(attribute);
原文链接:https://www.f2er.com/csharp/98268.html

猜你在找的C#相关文章