50 references to XmlSchemaValidationFlags
PresentationFramework (6)
src\Framework\System\Windows\Documents\FixedSchema.cs (6)
265
xmlReaderSettings.ValidationFlags = System.Xml.Schema.
XmlSchemaValidationFlags
.ProcessIdentityConstraints | System.Xml.Schema.
XmlSchemaValidationFlags
.ReportValidationWarnings;
350
_xmlReaderSettings.ValidationFlags = System.Xml.Schema.
XmlSchemaValidationFlags
.ProcessIdentityConstraints | System.Xml.Schema.
XmlSchemaValidationFlags
.ReportValidationWarnings;
759
_xmlReaderSettings.ValidationFlags = System.Xml.Schema.
XmlSchemaValidationFlags
.ProcessIdentityConstraints | System.Xml.Schema.
XmlSchemaValidationFlags
.ReportValidationWarnings;
System.Data.Entity (5)
System\Data\EntityModel\SchemaObjectModel\Schema.cs (4)
267
readerSettings.ValidationFlags &= ~System.Xml.Schema.
XmlSchemaValidationFlags
.ProcessIdentityConstraints;
268
readerSettings.ValidationFlags &= ~System.Xml.Schema.
XmlSchemaValidationFlags
.ProcessSchemaLocation;
269
readerSettings.ValidationFlags &= ~System.Xml.Schema.
XmlSchemaValidationFlags
.ProcessInlineSchema;
279
readerSettings.ValidationFlags |= System.Xml.Schema.
XmlSchemaValidationFlags
.ReportValidationWarnings;
System\Data\Mapping\StorageMappingItemLoader.cs (1)
3554
readerSettings.ValidationFlags |= System.Xml.Schema.
XmlSchemaValidationFlags
.ReportValidationWarnings;
System.Data.Services.Design (3)
System\Data\EntityModel\DataServiceBuildProvider.cs (1)
405
readerSettings.ValidationFlags =
XmlSchemaValidationFlags
.ReportValidationWarnings;
System\Data\Services\Design\Xml\XNodeSchemaApplier.cs (2)
273
XmlSchemaValidationFlags
validationFlags =
XmlSchemaValidationFlags
.AllowXmlAttributes;
System.Web.Extensions (1)
Compilation\WCFModel\MapFileLoader.cs (1)
91
ValidationFlags =
XmlSchemaValidationFlags
.ReportValidationWarnings,
System.Web.Services (1)
System\Web\Services\Description\ServiceDescription.cs (1)
366
readerSettings.ValidationFlags =
XmlSchemaValidationFlags
.ProcessIdentityConstraints;
System.Xml (31)
System\Xml\Core\XmlReaderSettings.cs (10)
65
XmlSchemaValidationFlags
validationFlags;
308
public
XmlSchemaValidationFlags
ValidationFlags {
315
if ((uint)value > (uint)(
XmlSchemaValidationFlags
.ProcessInlineSchema |
XmlSchemaValidationFlags
.ProcessSchemaLocation |
316
XmlSchemaValidationFlags
.ReportValidationWarnings |
XmlSchemaValidationFlags
.ProcessIdentityConstraints |
317
XmlSchemaValidationFlags
.AllowXmlAttributes)) {
534
validationFlags =
XmlSchemaValidationFlags
.ProcessIdentityConstraints;
535
validationFlags |=
XmlSchemaValidationFlags
.AllowXmlAttributes;
593
return new XmlValidatingReaderImpl(baseReader, this.GetEventHandler(), (this.ValidationFlags &
XmlSchemaValidationFlags
.ProcessIdentityConstraints) != 0);
System\Xml\Core\XmlValidatingReaderImpl.cs (1)
250
settings.ValidationFlags &= ~
XmlSchemaValidationFlags
.ProcessIdentityConstraints;
System\Xml\Core\XsdValidatingReader.cs (1)
140
this.processInlineSchema = (readerSettings.ValidationFlags &
XmlSchemaValidationFlags
.ProcessInlineSchema) != 0;
System\Xml\Dom\DocumentSchemaValidator.cs (5)
90
XmlSchemaValidationFlags
validationFlags =
XmlSchemaValidationFlags
.AllowXmlAttributes;
96
validationFlags |=
XmlSchemaValidationFlags
.ProcessIdentityConstraints;
227
private void CreateValidator(XmlSchemaObject partialValidationType,
XmlSchemaValidationFlags
validationFlags) {
679
XmlSchemaValidator findTypeValidator = new XmlSchemaValidator(document.NameTable, document.Schemas, this.nsManager,
XmlSchemaValidationFlags
.None);
System\Xml\Schema\XmlSchemaValidator.cs (14)
68
private
XmlSchemaValidationFlags
validationFlags;
168
public XmlSchemaValidator(XmlNameTable nameTable, XmlSchemaSet schemas, IXmlNamespaceResolver namespaceResolver,
XmlSchemaValidationFlags
validationFlags) {
183
if ( ((validationFlags &
XmlSchemaValidationFlags
.ProcessInlineSchema) != 0) || ((validationFlags &
XmlSchemaValidationFlags
.ProcessSchemaLocation) != 0) ) { //Process schema hints in xml document, hence user's set might change
296
if ((validationFlags &
XmlSchemaValidationFlags
.ProcessInlineSchema) == 0) { //Do not process schema if processInlineSchema is not set
396
if ((validationFlags &
XmlSchemaValidationFlags
.ProcessSchemaLocation) != 0 && xmlResolver != null) { //we should process schema location
958
internal
XmlSchemaValidationFlags
ValidationFlags {
1495
if (Ref.Equal(attQName.Namespace, NsXml) && (validationFlags &
XmlSchemaValidationFlags
.AllowXmlAttributes) != 0) { //Need to check if this attribute is an xml attribute
1714
return (validationFlags &
XmlSchemaValidationFlags
.ProcessIdentityConstraints) != 0;
1720
return (validationFlags &
XmlSchemaValidationFlags
.ReportValidationWarnings) != 0;
1726
return (validationFlags &
XmlSchemaValidationFlags
.ProcessInlineSchema) != 0;
1732
return (validationFlags &
XmlSchemaValidationFlags
.ProcessSchemaLocation) != 0;
1738
return (validationFlags &
XmlSchemaValidationFlags
.ProcessInlineSchema) != 0 ||
1739
(validationFlags &
XmlSchemaValidationFlags
.ProcessSchemaLocation) != 0;
System.Xml.Linq (3)
System\Xml\Linq\XNodeValidator.cs (3)
38
XmlSchemaValidationFlags
validationFlags =
XmlSchemaValidationFlags
.AllowXmlAttributes;
44
validationFlags |=
XmlSchemaValidationFlags
.ProcessIdentityConstraints;