XElement.GetSchemaInfo() 返回 null,为什么?

发布于 2024-09-08 04:17:39 字数 503 浏览 3 评论 0原文

我正在尝试使用我拥有的已编译模式(有效)验证 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怂人 2024-09-15 04:17:39

验证还有另一个重载 (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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文