例如…
<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 nodevar attribute = xmlDocToRef.CreateAttribute("s","ID","http://nIEm.gov/nIEm/structures/2.0");attribute.InnerText = "ID_Person_01"TempElement.SetAttributeNode(attribute);总结
以上是内存溢出为你收集整理的c# – 如何使用前缀创建XmlElement属性?全部内容,希望文章能够帮你解决c# – 如何使用前缀创建XmlElement属性?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)