Można tworzyć Walidujący instancję XmlReader użyciu klasy XmlReaderSettings i Utwórz metodę.
private bool ValidateXml(string xmlFilePath, string schemaFilePath, string schemaNamespace, Type rootType)
{
XmlSerializer serializer = new XmlSerializer(rootType);
using (var fs = new StreamReader(xmlFilePath, Encoding.GetEncoding("iso-8859-1")))
{
object deserializedObject;
var xmlReaderSettings = new XmlReaderSettings();
if (File.Exists(schemaFilePath))
{
//select schema for validation
xmlReaderSettings.Schemas.Add(schemaNamespace, schemaPath);
xmlReaderSettings.ValidationType = ValidationType.Schema;
try
{
using (var xmlReader = XmlReader.Create(fs, xmlReaderSettings))
{
if (serializer.CanDeserialize(xmlReader))
{
return true;
//deserializedObject = serializer.Deserialize(xmlReader);
}
else
{
return false;
}
}
}
catch(Exception ex)
{ return false; }
}
}
}
Powyższy kod wygeneruje wyjątek, jeśli schemat jest niepoprawny lub nie może deserializować xml. rootType to typ elementu głównego w równoważnej hierarchii klas.
przykład: schematu na: XML Schema Tutorial. Zapisz plik jako D:\SampleSchema.xsd
.
Run xsd.exe
:
- Otwórz 'Menu Start> Wszystkie programy> Microsoft Visual Studio 2010> Visual Studio Tools> Visual Studio 2010 Wiersz poleceń'
- W wierszu polecenia wpisz:
xsd.exe /c /out:D:\ "D:\SampleSchema.xsd"
- Opcje xsd:
/out
opcja określa katalog wyjściowy, /c
jest określenie narzędzia do generowania klas
- Hierarchia klasy wyjściowej jest obecna na
D:\SampleSchema.cs
- Wygenerowany hierarchii klasa wygląda pewne rzeczy tak,
//------------------------------------------------------------------------------
//
// This code was generated by a tool.
// Runtime Version:2.0.50727.4952
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
//------------------------------------------------------------------------------
using System.Xml.Serialization;
//
// This source code was auto-generated by xsd, Version=2.0.50727.3038.
//
///
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
[System.Xml.Serialization.XmlRootAttribute(Namespace="", IsNullable=false)]
public partial class note {
private string toField;
private string fromField;
private string headingField;
private string bodyField;
///
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string to {
get {
return this.toField;
}
set {
this.toField = value;
}
}
///
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string from {
get {
return this.fromField;
}
set {
this.fromField = value;
}
}
///
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string heading {
get {
return this.headingField;
}
set {
this.headingField = value;
}
}
///
[System.Xml.Serialization.XmlElementAttribute(Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public string body {
get {
return this.bodyField;
}
set {
this.bodyField = value;
}
}
}
Dodaj klasę do projektu visual studio.
Dla powyższej próbki xsd klasą podstawową jest note
.
wywołać metodę,
bool isXmlValid = ValidateXml(@"D:\Sample.xml",
@"D:\SampleSchema.xsd",
@"http://www.w3.org/2001/XMLSchema",
typeof(note));
Więcej informacji:
Dzięki, to jest dokładnie to, czego potrzebowałem! – M3NTA7
Niezwykle prosty w porównaniu do innych rozwiązań, dzięki! – JBeagle
'validate' powinno być z kapitałem pierwszej litery ... – realsonic