10 writes to BaseTypeName
System.Runtime.Serialization (1)
System\Runtime\Serialization\SchemaExporter.cs (1)
429restriction.BaseTypeName = StringQualifiedName;
System.ServiceModel (1)
System\ServiceModel\Description\MessageContractExporter.cs (1)
199contentRestriction.BaseTypeName = XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.Base64Binary).QualifiedName;
System.Web.Services (1)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (1)
7631o.@BaseTypeName = ToXmlQualifiedName(Reader.Value);
System.Xml (7)
System\Xml\Schema\DataTypeImplementation.cs (1)
185restContent.BaseTypeName = baseType.QualifiedName;
System\Xml\Schema\Preprocessor.cs (1)
387r.BaseTypeName = new XmlQualifiedName("NCName", XmlReservedNs.NsXs);
System\Xml\Schema\XmlSchemaSimpleTypeRestriction.cs (1)
64newRestriction.BaseTypeName = baseTypeName.Clone();
System\Xml\Schema\XsdBuilder.cs (1)
1461builder.simpleTypeRestriction.BaseTypeName = builder.ParseQName(value, "base");
System\Xml\Serialization\SoapSchemaExporter.cs (1)
360restriction.BaseTypeName = new XmlQualifiedName("string", XmlSchema.Namespace);
System\Xml\Serialization\Types.cs (1)
594restriction.BaseTypeName = baseTypeName;
System\Xml\Serialization\XmlSchemaExporter.cs (1)
1018restriction.BaseTypeName = new XmlQualifiedName("string", XmlSchema.Namespace);
44 references to BaseTypeName
System.Data (4)
fx\src\data\System\Data\SimpleType.cs (4)
104if (content.BaseTypeName.Namespace == Keywords.XSDNS) 105baseType = content.BaseTypeName.Name; 107baseType = content.BaseTypeName.ToString(); 114xmlBaseType = content.BaseTypeName;
System.Runtime.Serialization (5)
System\Runtime\Serialization\SchemaImporter.cs (5)
555if (restriction.BaseTypeName != XmlQualifiedName.Empty) 557return ((restriction.BaseTypeName == expectedBase && restriction.Facets.Count > 0) || ImportType(restriction.BaseTypeName) is EnumDataContract); 1234if (!restriction.BaseTypeName.IsEmpty) 1235dataContract = ImportType(restriction.BaseTypeName);
System.Web.Extensions (3)
Script\Services\WebServiceTypeData.cs (3)
175if (restriction.BaseTypeName != XmlQualifiedName.Empty) { 176return (restriction.BaseTypeName.Name == StringLocalName 177&& restriction.BaseTypeName.Namespace == SchemaNamespace
System.Web.Services (1)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (1)
2558WriteAttribute(@"base", @"", FromXmlQualifiedName(((global::System.Xml.XmlQualifiedName)o.@BaseTypeName)));
System.Xml (31)
System\Xml\Schema\Preprocessor.cs (4)
941if (restriction.BaseTypeName == stype.QualifiedName) { 1296if (!restriction.BaseTypeName.IsEmpty) { 1302if (restriction.BaseTypeName.IsEmpty) { 1306ValidateQNameAttribute(restriction, "base", restriction.BaseTypeName);
System\Xml\Schema\SchemaCollectionCompiler.cs (6)
445if (restriction.BaseTypeName.IsEmpty) { 450else if (simpleType.Redefined != null && restriction.BaseTypeName == simpleType.Redefined.QualifiedName) { 456if (restriction.BaseTypeName.Equals(DatatypeImplementation.QnAnySimpleType)) { 457throw new XmlSchemaException(Res.Sch_InvalidSimpleTypeRestriction, restriction.BaseTypeName.ToString(), simpleType); 459XmlSchemaSimpleType type = GetSimpleType(restriction.BaseTypeName); 468throw new XmlSchemaException(Res.Sch_UndeclaredSimpleType, restriction.BaseTypeName.ToString(), simpleType);
System\Xml\Schema\SchemaCollectionpreProcessor.cs (4)
633if (restriction.BaseTypeName == stype.QualifiedName) { 984if (!restriction.BaseTypeName.IsEmpty) { 990if (restriction.BaseTypeName.IsEmpty) { 994ValidateQNameAttribute(restriction, "base", restriction.BaseTypeName);
System\Xml\Schema\SchemaSetCompiler.cs (6)
509if (restriction.BaseTypeName.IsEmpty) { 514else if (simpleType.Redefined != null && restriction.BaseTypeName == simpleType.Redefined.QualifiedName) { 520if (restriction.BaseTypeName.Equals(DatatypeImplementation.QnAnySimpleType)) { 523throw new XmlSchemaException(Res.Sch_InvalidSimpleTypeRestriction, restriction.BaseTypeName.ToString(), simpleType); 526XmlSchemaSimpleType type = GetSimpleType(restriction.BaseTypeName); 535throw new XmlSchemaException(Res.Sch_UndeclaredSimpleType, restriction.BaseTypeName.ToString(), restriction);
System\Xml\Schema\XmlSchemaSimpleType.cs (1)
45return ((XmlSchemaSimpleTypeRestriction)content).BaseTypeName;
System\Xml\Serialization\ImportContext.cs (2)
339baseName = ((XmlSchemaSimpleTypeRestriction)content).BaseTypeName; 350baseName = ((XmlSchemaSimpleTypeRestriction)content).BaseTypeName;
System\Xml\Serialization\SchemaObjectWriter.cs (2)
530if (!o.@BaseTypeName.IsEmpty){ 531WriteAttribute(@"base", @"", o.@BaseTypeName);
System\Xml\Serialization\XmlSchemaImporter.cs (6)
1559AddReference(restriction.BaseTypeName, TypesInUse, Res.XmlCircularTypeReference); 1560mapping = ImportDataType(FindDataType(restriction.BaseTypeName, flags), restriction.BaseTypeName.Namespace, identifier, null, flags, false); 1561if (restriction.BaseTypeName.Namespace != XmlSchema.Namespace) 1562RemoveReference(restriction.BaseTypeName, TypesInUse); 1722return ((XmlSchemaSimpleTypeRestriction)content).BaseTypeName;