mscorlib(4.0.0.0) API with additions
XmlSchemaValidationFlags.cs
1 namespace System.Xml.Schema
2 {
4  [Flags]
6  {
8  None = 0x0,
10  ProcessInlineSchema = 0x1,
18  AllowXmlAttributes = 0x10
19  }
20 }
Process identity constraints (xs:ID, xs:IDREF, xs:key, xs:keyref, xs:unique) encountered during valid...
Process inline schemas encountered during validation.
Process schema location hints (xsi:schemaLocation, xsi:noNamespaceSchemaLocation) encountered during ...
Allow xml:* attributes even if they are not defined in the schema. The attributes will be validated b...
Report schema validation warnings encountered during validation.
XmlSchemaValidationFlags
Specifies schema validation options used by the T:System.Xml.Schema.XmlSchemaValidator and T:System....