System.Xml.Schema.XmlSchemaValidationFlags
namespace System.Xml.Schema
{
public enum XmlSchemaValidationFlags
{
AllowXmlAttributes = 16,
None = 0,
ProcessIdentityConstraints = 8,
ProcessInlineSchema = 1,
ProcessSchemaLocation = 2,
ReportValidationWarnings = 4
}
}