如何在XDocument中找到针对模式验证的无效XML节点(XmlSchemaValidationException.SourceObject为null)

时间:2013-01-21 20:17:56

标签: c# validation xsd linq-to-xml

我有一个XDocument我根据XML架构进行验证。当XDocument无效时,我需要找到无效的XML节点,以便用户可以轻松导航到我的应用程序中的相应位置(例如,通过双击消息网格上的消息)。

我为此目的使用System.Xml.Schema.Validate()扩展方法。 Validate()方法的第二个参数是System.Xml.ValidationEventHandler,它在每个无效的XML元素上调用。它传递System.Xml.ValidationEventArgsValidationEventArgs.Exception可以投放到System.Xml.Schema.XmlSchemaValidationException。现在 XmlSchemaValidationException有一个属性SourceObject,我希望它可以保存对无效XML节点的引用。不幸的是它总是空的。

以下代码段说明了我的用法:

XDocument doc = XDocument.Load(@"c:\temp\booksSchema.xml");

// Create the XmlSchemaSet class.
XmlSchemaSet sc = new XmlSchemaSet();

// Add the schema to the collection.
sc.Add("urn:bookstore-schema", @"c:\temp\books.xsd");

// Validate against schema
doc.Validate(sc, delegate(object sender, ValidationEventArgs e)
                {
                    XmlSchemaValidationException ve = e.Exception as XmlSchemaValidationException;
                    if (ve != null)
                    {
                        object errorNode = ve.SourceObject;    
                        // ve.SourceObject is always null
                    }
                });

验证本身可以正常工作,但我无法获得无效节点的引用。奇怪的是,同样的方法适用于System.Xml.XmlDocument,但不幸的是,我必须在此上下文中使用XDocument

是否有人建议如何在XDocument中找到无效节点?

1 个答案:

答案 0 :(得分:7)

好的,我有答案。无效节点是事件处理程序的“发送者”本身。它可以转换为XContainer,XElement,......