28 references to BaseXmlSchemaType
System.Data.Common (14)
System\Data\SimpleType.cs (1)
58
XmlSchemaSimpleType? ancestor = node.
BaseXmlSchemaType
as XmlSchemaSimpleType;
System\Data\XMLSchema.cs (13)
629
if (ct.
BaseXmlSchemaType
is XmlSchemaComplexType)
630
ct = (XmlSchemaComplexType)ct.
BaseXmlSchemaType
;
1063
if (!(ct.
BaseXmlSchemaType
is XmlSchemaComplexType && FromInference))
1066
if (ct.
BaseXmlSchemaType
is XmlSchemaComplexType)
1068
HandleComplexType((XmlSchemaComplexType)ct.
BaseXmlSchemaType
, table, tableChildren, isNillable);
1072
Debug.Assert(ct.
BaseXmlSchemaType
is XmlSchemaSimpleType, "Expected SimpleType or ComplexType");
1085
if (ct.
BaseXmlSchemaType
is XmlSchemaComplexType && FromInference)
1107
if (ct.
BaseXmlSchemaType
is XmlSchemaComplexType)
1109
HandleComplexType((XmlSchemaComplexType)ct.
BaseXmlSchemaType
, table, tableChildren, isNillable);
1113
Debug.Assert(ct.
BaseXmlSchemaType
is XmlSchemaSimpleType, "Expected SimpleType or ComplexType");
1114
HandleSimpleTypeSimpleContentColumn((XmlSchemaSimpleType)ct.
BaseXmlSchemaType
, ccExtension.BaseTypeName.Name, table, isBase, ct.ContentModel.UnhandledAttributes, isNillable);
1483
bool isSimpleContent = ((node.ElementSchemaType!.
BaseXmlSchemaType
!= null) || (ct != null && ct.ContentModel is XmlSchemaSimpleContent));
1976
XmlSchemaSimpleType? ancestor = typeNode.
BaseXmlSchemaType
as XmlSchemaSimpleType;
System.Private.Xml (14)
System\Xml\Schema\DataTypeImplementation.cs (5)
360
while (currentType.
BaseXmlSchemaType
!= DatatypeImplementation.AnySimpleType)
362
currentType = (currentType.
BaseXmlSchemaType
as XmlSchemaSimpleType)!;
911
simpleType = complexType.
BaseXmlSchemaType
as XmlSchemaSimpleType;
916
complexType = complexType.
BaseXmlSchemaType
as XmlSchemaComplexType;
933
simpleType = simpleType.
BaseXmlSchemaType
as XmlSchemaSimpleType;
System\Xml\Schema\SchemaCollectionCompiler.cs (2)
574
simpleType.SetBaseSchemaType(simpleType.Redefined.
BaseXmlSchemaType
);
1043
XmlSchemaComplexType? baseType = complexType.
BaseXmlSchemaType
as XmlSchemaComplexType;
System\Xml\Schema\SchemaSetCompiler.cs (2)
660
simpleType.SetBaseSchemaType(simpleType.Redefined.
BaseXmlSchemaType
);
1127
XmlSchemaComplexType? baseType = complexType.
BaseXmlSchemaType
as XmlSchemaComplexType;
System\Xml\Schema\XmlSchemaType.cs (1)
318
derivedType = derivedType.
BaseXmlSchemaType
;
System\Xml\Schema\XmlValueConverter.cs (3)
239
schemaType = schemaType.
BaseXmlSchemaType
!;
425
type = type.
BaseXmlSchemaType
;
3143
schemaType = schemaType.
BaseXmlSchemaType
!;
System\Xml\Xsl\XmlQueryTypeFactory.cs (1)
56
schemaType = (XmlSchemaSimpleType)schemaType.
BaseXmlSchemaType
!;