我需要读取 xml 标签中特定值的值,在我尝试过的解决方案中,我只能发现要获取标签元素的值,我需要从根元素遍历到子元素。是否有选项我可以直接选择一个标签并获取它的值。
在下面的 xml exa 中,我需要使用 c# 从 xml 中获取 123456 值。前任:-
<ForwardActionRequest xmlns:auth="test" xmlns="http://www.test">
<auth:Authentication>
<auth:AuthenticationData>
<auth:AuthenticationKey>test</auth:AuthenticationKey>
<auth:Username>test</auth:Username>
<auth:Password>test</auth:Password>
</auth:AuthenticationData>
</auth:Authentication>
<SearchOrderReference>
<Reference>123456</Reference>
<AllocatedBy>test</AllocatedBy>
<Description>test</Description>
</SearchOrderReference>