从 XMLDocument 读取第一个节点
我收到 XML 字符串中的消息;我加载到 XmlDocument
中;但第二个节点每次都不同;我在下面给出的示例是三个示例:
<Message>
<Event1 Operation="Amended" Id="88888">Other XML Text</Event1>
</Message>
<Message>
<Event2 _Operation_="Cancelled" Id="9999999"> Other XML Text </Event2>
</Message>
<Message>
<Event3 Operation="Cancelled" Id="22222"> Other XML Text </Event3>
</Message>
现在,我想知道第二个节点是 Event1
还是 Event2
或者 Event3
以及什么是操作的值,例如“已修改”、“已取消”、“已订购”?
I receive message in XML string; that I load into XmlDocument
; but second node is different every time; I have given example below are three examples:
<Message>
<Event1 Operation="Amended" Id="88888">Other XML Text</Event1>
</Message>
<Message>
<Event2 _Operation_="Cancelled" Id="9999999"> Other XML Text </Event2>
</Message>
<Message>
<Event3 Operation="Cancelled" Id="22222"> Other XML Text </Event3>
</Message>
Now, I want to find out whether second node is Event1
or Event2
or Event3
and also what is value of Operation e.g. "Amended", "Cancelled", "Ordered" ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以尝试
You can try
我突然想到,您可以检查
XmlDocument
对象上的DocumentElement.FirstChild.Name
来检索 Message 元素的第一个子元素的名称。可以使用
DocumentElement.FirstChild.GetAttribute("Operation") 读取操作属性。
Off the top of my head, you could check the
DocumentElement.FirstChild.Name
on theXmlDocument
object to retrieve the name of the first child element of the Message element.The Operation attribute can be read using
DocumentElement.FirstChild.GetAttribute("Operation").