在 C# 中针对引用的 XSD 验证 XML

Validating an XML against referenced XSD in C#(在 C# 中针对引用的 XSD 验证 XML)
本文介绍了在 C# 中针对引用的 XSD 验证 XML的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我有一个带有指定架构位置的 XML 文件,例如:

I have an XML file with a specified schema location such as this:

xsi:schemaLocation="someurl ..localSchemaPath.xsd"

我想在 C# 中进行验证.当我打开文件时,Visual Studio 会根据架构验证它并完美地列出错误.但是,不知何故,如果不指定要验证的架构,我似乎无法在 C# 中自动验证它:

I want to validate in C#. Visual Studio, when I open the file, validates it against the schema and lists errors perfectly. Somehow, though, I can't seem to validate it automatically in C# without specifying the schema to validate against like so:

XmlDocument asset = new XmlDocument();

XmlTextReader schemaReader = new XmlTextReader("relativeSchemaPath");
XmlSchema schema = XmlSchema.Read(schemaReader, SchemaValidationHandler);

asset.Schemas.Add(schema);

asset.Load(filename);
asset.Validate(DocumentValidationHandler);

我不应该能够使用 XML 文件中指定的架构自动进行验证吗?我错过了什么?

Shouldn't I be able to validate with the schema specified in the XML file automatically ? What am I missing ?

推荐答案

您需要创建一个 XmlReaderSettings 实例,并在创建时将其传递给您的 XmlReader.然后可以订阅设置中的ValidationEventHandler来接收验证错误.您的代码最终将如下所示:

You need to create an XmlReaderSettings instance and pass that to your XmlReader when you create it. Then you can subscribe to the ValidationEventHandler in the settings to receive validation errors. Your code will end up looking like this:

using System.Xml;
using System.Xml.Schema;
using System.IO;

public class ValidXSD
{
    public static void Main()
    {

        // Set the validation settings.
        XmlReaderSettings settings = new XmlReaderSettings();
        settings.ValidationType = ValidationType.Schema;
        settings.ValidationFlags |= XmlSchemaValidationFlags.ProcessInlineSchema;
        settings.ValidationFlags |= XmlSchemaValidationFlags.ProcessSchemaLocation;
        settings.ValidationFlags |= XmlSchemaValidationFlags.ReportValidationWarnings;
        settings.ValidationEventHandler += new ValidationEventHandler(ValidationCallBack);

        // Create the XmlReader object.
        XmlReader reader = XmlReader.Create("inlineSchema.xml", settings);

        // Parse the file. 
        while (reader.Read()) ;

    }
    // Display any warnings or errors.
    private static void ValidationCallBack(object sender, ValidationEventArgs args)
    {
        if (args.Severity == XmlSeverityType.Warning)
            Console.WriteLine("	Warning: Matching schema not found.  No validation occurred." + args.Message);
        else
            Console.WriteLine("	Validation error: " + args.Message);

    }
}

这篇关于在 C# 中针对引用的 XSD 验证 XML的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Multicast delegate weird behavior in C#?(C# 中的多播委托奇怪行为?)
Parameter count mismatch with Invoke?(参数计数与调用不匹配?)
How to store delegates in a List(如何将代表存储在列表中)
How delegates work (in the background)?(代表如何工作(在后台)?)
C# Asynchronous call without EndInvoke?(没有 EndInvoke 的 C# 异步调用?)
Delegate.CreateDelegate() and generics: Error binding to target method(Delegate.CreateDelegate() 和泛型:错误绑定到目标方法)