20 references to AttributeSchemaType
dotnet-svcutil-lib (20)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentSchemaValidator.cs (1)
465_attributeSchemaInfo.SchemaType = schemaAttribute.AttributeSchemaType;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (7)
1861if (attribute.AttributeSchemaType != attributeBase.AttributeSchemaType || attributeBase.Use == XmlSchemaUse.Prohibited) 1912else if (attributeBase.AttributeSchemaType == null || attribute.AttributeSchemaType == null || !XmlSchemaType.IsDerivedFrom(attribute.AttributeSchemaType, attributeBase.AttributeSchemaType, XmlSchemaDerivationMethod.Empty)) 2110xa.SetAttributeType(a.AttributeSchemaType);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (11)
2208if (attributeBase.Use != XmlSchemaUse.Prohibited && attribute.AttributeSchemaType != attributeBase.AttributeSchemaType) 2259else if (attributeBase.AttributeSchemaType == null || attribute.AttributeSchemaType == null || !XmlSchemaType.IsDerivedFrom(attribute.AttributeSchemaType, attributeBase.AttributeSchemaType, XmlSchemaDerivationMethod.Empty)) 2327else if (attributeBase.AttributeSchemaType == null || attribute.AttributeSchemaType == null || !XmlSchemaType.IsDerivedFrom(attribute.AttributeSchemaType, attributeBase.AttributeSchemaType, XmlSchemaDerivationMethod.Empty)) 2520xa.SetAttributeType(a.AttributeSchemaType);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaValidator.cs (1)
726schemaInfo.SchemaType = localAttribute == null ? null : localAttribute.AttributeSchemaType;