命名节点来自不同的文档上下文

时间:2018-01-04 22:02:39

标签: .net xml vb.net attributes nodes

我正在尝试向节点添加属性,并且我收到以下错误:“命名节点来自不同的文档上下文”

Private Sub AddAttribute(ByRef node As XmlNode, ByRef file As XmlDocument, attribute As String, value As String)
    Dim myAttribute As XmlAttribute

    myAttribute = file.CreateAttribute(attribute)
    myAttribute.Value = value
    node.Attributes.Append(myAttribute)
End Sub

我已经阅读了有关xmlNode.OwnerDocument.ImportNode的内容,但我找不到对属性执行相同操作的方法。任何的想法?谢谢。

0 个答案:

没有答案