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)
1861
if (attribute.
AttributeSchemaType
!= attributeBase.
AttributeSchemaType
|| attributeBase.Use == XmlSchemaUse.Prohibited)
1912
else if (attributeBase.
AttributeSchemaType
== null || attribute.
AttributeSchemaType
== null || !XmlSchemaType.IsDerivedFrom(attribute.
AttributeSchemaType
, attributeBase.
AttributeSchemaType
, XmlSchemaDerivationMethod.Empty))
2110
xa.SetAttributeType(a.
AttributeSchemaType
);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (11)
2208
if (attributeBase.Use != XmlSchemaUse.Prohibited && attribute.
AttributeSchemaType
!= attributeBase.
AttributeSchemaType
)
2259
else if (attributeBase.
AttributeSchemaType
== null || attribute.
AttributeSchemaType
== null || !XmlSchemaType.IsDerivedFrom(attribute.
AttributeSchemaType
, attributeBase.
AttributeSchemaType
, XmlSchemaDerivationMethod.Empty))
2327
else if (attributeBase.
AttributeSchemaType
== null || attribute.
AttributeSchemaType
== null || !XmlSchemaType.IsDerivedFrom(attribute.
AttributeSchemaType
, attributeBase.
AttributeSchemaType
, XmlSchemaDerivationMethod.Empty))
2520
xa.SetAttributeType(a.
AttributeSchemaType
);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaValidator.cs (1)
726
schemaInfo.SchemaType = localAttribute == null ? null : localAttribute.
AttributeSchemaType
;