22 references to AttributeSchemaType
System.ServiceModel.Web (1)
System\ServiceModel\Dispatcher\HelpExampleGenerator.cs (1)
191
string content = GenerateContentForXmlSimpleType(attribute.
AttributeSchemaType
);
System.Xml (20)
System\Xml\Dom\DocumentSchemaValidator.cs (1)
403
attributeSchemaInfo.SchemaType = schemaAttribute.
AttributeSchemaType
;
System\Xml\Schema\SchemaCollectionCompiler.cs (7)
1475
if (attribute.
AttributeSchemaType
!= attributeBase.
AttributeSchemaType
|| attributeBase.Use == XmlSchemaUse.Prohibited) {
1515
else if (attributeBase.
AttributeSchemaType
== null || attribute.
AttributeSchemaType
== null || !XmlSchemaType.IsDerivedFrom(attribute.
AttributeSchemaType
, attributeBase.
AttributeSchemaType
, XmlSchemaDerivationMethod.Empty)) {
1671
xa.SetAttributeType(a.
AttributeSchemaType
);
System\Xml\Schema\SchemaSetCompiler.cs (11)
1757
if (attributeBase.Use != XmlSchemaUse.Prohibited && attribute.
AttributeSchemaType
!= attributeBase.
AttributeSchemaType
) { //Extension allows previously prohibited attributes to be re-added,
1797
else if (attributeBase.
AttributeSchemaType
== null || attribute.
AttributeSchemaType
== null || !XmlSchemaType.IsDerivedFrom(attribute.
AttributeSchemaType
, attributeBase.
AttributeSchemaType
, XmlSchemaDerivationMethod.Empty)) {
1851
else if (attributeBase.
AttributeSchemaType
== null || attribute.
AttributeSchemaType
== null || !XmlSchemaType.IsDerivedFrom(attribute.
AttributeSchemaType
, attributeBase.
AttributeSchemaType
, XmlSchemaDerivationMethod.Empty)) {
2001
xa.SetAttributeType(a.
AttributeSchemaType
);
System\Xml\Schema\XmlSchemaValidator.cs (1)
628
schemaInfo.SchemaType = localAttribute == null ? null : localAttribute.
AttributeSchemaType
;
System.Xml.Linq (1)
System\Xml\Linq\XNodeValidator.cs (1)
83
XmlSchemaSimpleType st = sa.
AttributeSchemaType
;