使用XmlDocument时跳过DTD验证
Posted sinceret
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用XmlDocument时跳过DTD验证相关的知识,希望对你有一定的参考价值。
读取xml时出现System.Net联网网络错误
XmlReaderSettings xs = new XmlReaderSettings();
xs.XmlResolver = null;
xs.DtdProcessing=DtdProcessing.Ignore;//xs.ProhibitDtd = false;
XmlReader reader = XmlReader.Create(url, xs);
XmlDocument doc = new XmlDocument();
以上是关于使用XmlDocument时跳过DTD验证的主要内容,如果未能解决你的问题,请参考以下文章