22 references to AttributeSchemaType
System.Private.Xml (20)
System\Xml\Dom\DocumentSchemaValidator.cs (1)
439
_attributeSchemaInfo.SchemaType = schemaAttribute.
AttributeSchemaType
;
System\Xml\Schema\SchemaCollectionCompiler.cs (7)
1860
if (attribute.
AttributeSchemaType
!= attributeBase.
AttributeSchemaType
|| attributeBase.Use == XmlSchemaUse.Prohibited)
1901
else if (attributeBase.
AttributeSchemaType
== null || attribute.
AttributeSchemaType
== null || !XmlSchemaType.IsDerivedFrom(attribute.
AttributeSchemaType
, attributeBase.
AttributeSchemaType
, XmlSchemaDerivationMethod.Empty))
2032
xa.SetAttributeType(a.
AttributeSchemaType
);
System\Xml\Schema\SchemaSetCompiler.cs (11)
2225
if (attributeBase.Use != XmlSchemaUse.Prohibited && attribute.
AttributeSchemaType
!= attributeBase.
AttributeSchemaType
)
2266
else if (attributeBase.
AttributeSchemaType
== null || attribute.
AttributeSchemaType
== null || !XmlSchemaType.IsDerivedFrom(attribute.
AttributeSchemaType
, attributeBase.
AttributeSchemaType
, XmlSchemaDerivationMethod.Empty))
2326
else if (attributeBase.
AttributeSchemaType
== null || attribute.
AttributeSchemaType
== null || !XmlSchemaType.IsDerivedFrom(attribute.
AttributeSchemaType
, attributeBase.
AttributeSchemaType
, XmlSchemaDerivationMethod.Empty))
2465
xa.SetAttributeType(a.
AttributeSchemaType
);
System\Xml\Schema\XmlSchemaValidator.cs (1)
686
schemaInfo.SchemaType = localAttribute?.
AttributeSchemaType
;
System.Private.Xml.Linq (2)
System\Xml\Schema\XNodeValidator.cs (2)
95
Debug.Assert(sa.
AttributeSchemaType
!= null);
96
XmlSchemaSimpleType st = sa.
AttributeSchemaType
;