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