2 writes to BaseTypeName
System.Private.Xml (2)
System\Xml\Schema\XmlSchemaComplexType.cs (1)
374newComplexRest.BaseTypeName = complexRest.BaseTypeName.Clone();
System\Xml\Schema\XsdBuilder.cs (1)
1696builder._complexContentRestriction!.BaseTypeName = builder.ParseQName(value, "base");
18 references to BaseTypeName
System.Private.DataContractSerialization (1)
System\Runtime\Serialization\SchemaImporter.cs (1)
470XmlQualifiedName baseTypeName = restriction.BaseTypeName;
System.Private.Xml (17)
System\Xml\Schema\Preprocessor.cs (3)
1118baseName = ((XmlSchemaComplexContentRestriction)content.Content).BaseTypeName; 1803if (contentRestriction.BaseTypeName.IsEmpty) 1809ValidateQNameAttribute(contentRestriction, "base", contentRestriction.BaseTypeName);
System\Xml\Schema\SchemaCollectionCompiler.cs (3)
994if (complexType.Redefined != null && complexRestriction.BaseTypeName == complexType.Redefined.QualifiedName) 1001baseType = GetComplexType(complexRestriction.BaseTypeName); 1004SendValidationEvent(SR.Sch_UndefBaseRestriction, complexRestriction.BaseTypeName.ToString(), complexRestriction);
System\Xml\Schema\SchemaCollectionpreProcessor.cs (3)
794baseName = ((XmlSchemaComplexContentRestriction)content.Content).BaseTypeName; 1468if (contentRestriction.BaseTypeName.IsEmpty) 1474ValidateQNameAttribute(contentRestriction, "base", contentRestriction.BaseTypeName);
System\Xml\Schema\SchemaSetCompiler.cs (3)
1082if (complexType.Redefined != null && complexRestriction.BaseTypeName == complexType.Redefined.QualifiedName) 1089baseType = GetComplexType(complexRestriction.BaseTypeName!); 1092SendValidationEvent(SR.Sch_UndefBaseRestriction, complexRestriction.BaseTypeName.ToString(), complexRestriction);
System\Xml\Schema\XmlSchemaComplexType.cs (2)
278return ((XmlSchemaComplexContentRestriction)_contentModel.Content).BaseTypeName; 374newComplexRest.BaseTypeName = complexRest.BaseTypeName.Clone();
System\Xml\Serialization\ImportContext.cs (1)
276baseName = ((XmlSchemaComplexContentRestriction)content).BaseTypeName;
System\Xml\Serialization\SchemaObjectWriter.cs (2)
1226if (!o.@BaseTypeName.IsEmpty) 1228WriteAttribute(@"base", @"", o.@BaseTypeName);