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)
1860if (attribute.AttributeSchemaType != attributeBase.AttributeSchemaType || attributeBase.Use == XmlSchemaUse.Prohibited) 1901else if (attributeBase.AttributeSchemaType == null || attribute.AttributeSchemaType == null || !XmlSchemaType.IsDerivedFrom(attribute.AttributeSchemaType, attributeBase.AttributeSchemaType, XmlSchemaDerivationMethod.Empty)) 2032xa.SetAttributeType(a.AttributeSchemaType);
System\Xml\Schema\SchemaSetCompiler.cs (11)
2225if (attributeBase.Use != XmlSchemaUse.Prohibited && attribute.AttributeSchemaType != attributeBase.AttributeSchemaType) 2266else if (attributeBase.AttributeSchemaType == null || attribute.AttributeSchemaType == null || !XmlSchemaType.IsDerivedFrom(attribute.AttributeSchemaType, attributeBase.AttributeSchemaType, XmlSchemaDerivationMethod.Empty)) 2326else if (attributeBase.AttributeSchemaType == null || attribute.AttributeSchemaType == null || !XmlSchemaType.IsDerivedFrom(attribute.AttributeSchemaType, attributeBase.AttributeSchemaType, XmlSchemaDerivationMethod.Empty)) 2465xa.SetAttributeType(a.AttributeSchemaType);
System\Xml\Schema\XmlSchemaValidator.cs (1)
686schemaInfo.SchemaType = localAttribute?.AttributeSchemaType;
System.Private.Xml.Linq (2)
System\Xml\Schema\XNodeValidator.cs (2)
95Debug.Assert(sa.AttributeSchemaType != null); 96XmlSchemaSimpleType st = sa.AttributeSchemaType;