XmlReaderSettings::ValidationFlags Property
Gets or sets a value indicating the schema validation settings. This setting applies to XmlReader objects that validate schemas (ValidationType property set to ValidationType.Schema).
Assembly: System.Xml (in System.Xml.dll)
public: property XmlSchemaValidationFlags ValidationFlags { XmlSchemaValidationFlags get(); void set(XmlSchemaValidationFlags value); }
Property Value
Type: System.Xml.Schema::XmlSchemaValidationFlagsA bitwise combination of enumeration values that specify validation options. ProcessIdentityConstraints and AllowXmlAttributes are enabled by default. ProcessInlineSchema, ProcessSchemaLocation, and ReportValidationWarnings are disabled by default.
Security Note
|
|---|
The ProcessInlineSchema and ProcessSchemaLocation validation flags of an XmlReaderSettings object are not set by default. When these flags are set, the XmlResolver of the XmlReaderSettings object is used to resolve schema locations encountered in the instance document in the XmlReader. If the XmlResolver object is null, schema locations are not resolved even if the ProcessInlineSchema and ProcessSchemaLocation validation flags are set. Schemas added during validation add new types and can change the validation outcome of the document being validated. As a result, external schemas should only be resolved from trusted sources. Disabling the ProcessIdentityConstraints flag (enabled by default) is recommended when validating, untrusted, large XML documents in high availability scenarios against a schema with identity constraints over a large part of the document. |
The following example validates an XML file against an inline XML Schema by enabling the ProcessInlineSchema setting. The XML reader is configured to display validation warnings, sp you also see the expected warning on the root element.
The example uses the inlineSchema.xml file as input.
<root> <!--Start of schema--> <xs:schema xmlns:xs='http://www.w3.org/2001/XMLSchema' xmlns='xsdHeadCount' targetNamespace='xsdHeadCount'> <xs:element name='HeadCount'> <xs:complexType> <xs:sequence> <xs:element name='ID' type='xs:unsignedShort' maxOccurs='unbounded' /> </xs:sequence> <xs:attribute name='division' type='xs:string' use='optional' default='QA'/> </xs:complexType> </xs:element> </xs:schema> <!--End of schema--> <hc:HeadCount xmlns:hc='xsdHeadCount'> <ID>12365</ID> <ID>43295</ID> <division>Accounting</division> </hc:HeadCount> </root>
Warning: Matching schema not found. No validation occurred. Could not find schema information for the element 'root'.
Validation error: The element 'xsdHeadCount:HeadCount' has invalid child element 'division'. Expected 'ID'.
Available since 2.0
