32 references to BaseXmlSchemaType
System.Data (16)
fx\src\data\System\Data\SimpleType.cs (2)
95XmlSchemaSimpleType ancestor = node.BaseXmlSchemaType as XmlSchemaSimpleType; 98baseSimpleType = new SimpleType(node.BaseXmlSchemaType as XmlSchemaSimpleType);
fx\src\data\System\Data\SQLTypes\SqlTypesSchemaImporter.cs (1)
98XmlSchemaType basetype = ((XmlSchemaSimpleType) type).BaseXmlSchemaType;
fx\src\data\System\Data\XMLSchema.cs (13)
548if (ct.BaseXmlSchemaType is XmlSchemaComplexType) 549ct = (XmlSchemaComplexType)ct.BaseXmlSchemaType; 897if (!(ct.BaseXmlSchemaType is XmlSchemaComplexType && this.FromInference)) 900if (ct.BaseXmlSchemaType is XmlSchemaComplexType) { 901HandleComplexType((XmlSchemaComplexType)ct.BaseXmlSchemaType, table, tableChildren, isNillable); 904Debug.Assert(ct.BaseXmlSchemaType is XmlSchemaSimpleType, "Expected SimpleType or ComplexType"); 915if (ct.BaseXmlSchemaType is XmlSchemaComplexType && this.FromInference) 933if (ct.BaseXmlSchemaType is XmlSchemaComplexType) { 934HandleComplexType((XmlSchemaComplexType)ct.BaseXmlSchemaType, table, tableChildren, isNillable); 937Debug.Assert(ct.BaseXmlSchemaType is XmlSchemaSimpleType, "Expected SimpleType or ComplexType"); 938HandleSimpleTypeSimpleContentColumn((XmlSchemaSimpleType)ct.BaseXmlSchemaType, ccExtension.BaseTypeName.Name, table, isBase, ct.ContentModel.UnhandledAttributes, isNillable); 1271bool isSimpleContent = ((node.ElementSchemaType.BaseXmlSchemaType != null) ||(ct != null && ct.ContentModel is XmlSchemaSimpleContent)); 1707XmlSchemaSimpleType ancestor = typeNode.BaseXmlSchemaType as XmlSchemaSimpleType;
System.Data.SqlXml (1)
System\Xml\Xsl\XmlQueryTypeFactory.cs (1)
56schemaType = (XmlSchemaSimpleType) schemaType.BaseXmlSchemaType;
System.ServiceModel.Web (2)
System\ServiceModel\Dispatcher\HelpExampleGenerator.cs (2)
760else if (child.BaseXmlSchemaType is XmlSchemaComplexType) 762return DerivesFrom(parent, (XmlSchemaComplexType)child.BaseXmlSchemaType);
System.Xml (13)
System\Xml\Schema\DataTypeImplementation.cs (5)
329while (currentType.BaseXmlSchemaType != DatatypeImplementation.AnySimpleType) { 330currentType = currentType.BaseXmlSchemaType as XmlSchemaSimpleType; 838simpleType = complexType.BaseXmlSchemaType as XmlSchemaSimpleType; 842complexType = complexType.BaseXmlSchemaType as XmlSchemaComplexType; 855simpleType = simpleType.BaseXmlSchemaType as XmlSchemaSimpleType;
System\Xml\Schema\SchemaCollectionCompiler.cs (2)
452simpleType.SetBaseSchemaType(simpleType.Redefined.BaseXmlSchemaType); 822XmlSchemaComplexType baseType = complexType.BaseXmlSchemaType as XmlSchemaComplexType;
System\Xml\Schema\SchemaSetCompiler.cs (2)
516simpleType.SetBaseSchemaType(simpleType.Redefined.BaseXmlSchemaType); 881XmlSchemaComplexType baseType = complexType.BaseXmlSchemaType as XmlSchemaComplexType;
System\Xml\Schema\XmlSchemaType.cs (1)
280derivedType = derivedType.BaseXmlSchemaType;
System\Xml\Schema\XmlValueConverter.cs (3)
285schemaType = schemaType.BaseXmlSchemaType; 502type = type.BaseXmlSchemaType; 3314schemaType = schemaType.BaseXmlSchemaType;