本文介绍了如何获得XML名称空间?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我尝试使用以下代码:[C#]
I tried using this code: [C#]
var textReader = new XmlTextReader(path);
if (textReader.NamespaceURI == "http://www.portalfiscal.inf.br/nfe")
{
//...
}
我的XML:
<?xml version="1.0" encoding="utf-8"?>
<NFe xmlns="http://www.portalfiscal.inf.br/nfe">
<infNFe version="2.00" Id="NFe31130317194994450127550012302143751002144567">
<ide>
//continue...
但是我的代码总是返回 ...
But my code always returns "" ...
是否有一种简单的方法来获取XML名称空间?
推荐答案
您的代码将返回当前节点的namespaceUri。
Your code will return the namespaceUri of the current node.
尝试在xml流中前进:
Try to advance in the xml stream:
var textReader = new XmlTextReader(path);
while(reader.NodeType != XmlNodeType.Element) textReader.Read();
if (textReader.NamespaceURI == "http://www.portalfiscal.inf.br/nfe")
{
//...
}
这篇关于如何获得XML名称空间?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!