XElement.GetSchemaInfo() 返回 null,为什么?
我正在尝试使用我拥有的已编译模式(有效)验证 XDocument,但是当我尝试访问根 XElement 的 PSVI 时,它返回 null。我需要这个,以便我可以验证子 XElement。
以下是我想要执行的示例代码:
XDocument xmlDoc = XDocument.Load(xmlFilePath);
XElement root = _xmlDoc.Elements().Single();
XmlSchemaSet schemas = new XmlSchemaSet();
schemas.Add(schema);
xmlDoc.Validate(schemas, ValidationEventHandler);
XmlSchemaElement se = xmlDoc.Elements().Single().GetSchemaInfo();
我可以看到 XDocument 的验证有效,我捕获了 ValidationEvents 等。
所有的想法都受到赞赏。谢谢。
I'm trying to validate an XDocument with a compiled schema that I have (which works) but when I try to access PSVI for the root XElement it returns null. I need this so I can validate child XElements.
Here is a sample code of what I'm trying to do:
XDocument xmlDoc = XDocument.Load(xmlFilePath);
XElement root = _xmlDoc.Elements().Single();
XmlSchemaSet schemas = new XmlSchemaSet();
schemas.Add(schema);
xmlDoc.Validate(schemas, ValidationEventHandler);
XmlSchemaElement se = xmlDoc.Elements().Single().GetSchemaInfo();
I can see that validation for XDocument works, I catch ValidationEvents and all.
All thoughts are appreciated. Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
验证还有另一个重载 (http://msdn。 microsoft.com/en-us/library/bb354954(v=VS.90).aspx),它采用布尔参数。如果将该布尔值设置为 true,PSVI 将存储在节点上,然后 GetSchemaInfo 应该可以工作。如果树中没有 PSVI,它就无法工作。
There's another overload for Validate (http://msdn.microsoft.com/en-us/library/bb354954(v=VS.90).aspx) which takes a boolean parameter. If you set that boolean to true, the PSVI will be stored on the nodes and then GetSchemaInfo should work. Without the PSVI in the tree it can't work.