8 writes to BaseTypeName
dotnet-svcutil-lib (8)
FrameworkFork\Microsoft.Xml\Xml\schema\DatatypeImplementation.cs (1)
202
restContent.
BaseTypeName
= baseType.QualifiedName;
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (1)
461
r.
BaseTypeName
= new XmlQualifiedName("NCName", XmlReservedNs.NsXs);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaSimpleTypeRestriction.cs (1)
70
newRestriction.
BaseTypeName
= _baseTypeName.Clone();
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
1571
builder._simpleTypeRestriction.
BaseTypeName
= builder.ParseQName(value, "base");
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaExporter.cs (1)
418
restriction.
BaseTypeName
= new XmlQualifiedName("string", XmlSchema.Namespace);
FrameworkFork\Microsoft.Xml\Xml\Serialization\Types.cs (1)
669
restriction.
BaseTypeName
= baseTypeName;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (1)
1199
restriction.
BaseTypeName
= new XmlQualifiedName("string", XmlSchema.Namespace);
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
9477
o.
@BaseTypeName
= ToXmlQualifiedName(Reader.Value);
37 references to BaseTypeName
dotnet-svcutil-lib (37)
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (4)
1135
if (restriction.
BaseTypeName
== stype.QualifiedName)
1590
if (!restriction.
BaseTypeName
.IsEmpty)
1598
if (restriction.
BaseTypeName
.IsEmpty)
1604
ValidateQNameAttribute(restriction, "base", restriction.
BaseTypeName
);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (6)
557
if (restriction.
BaseTypeName
.IsEmpty)
563
else if (simpleType.Redefined != null && restriction.
BaseTypeName
== simpleType.Redefined.QualifiedName)
571
if (restriction.
BaseTypeName
.Equals(DatatypeImplementation.QnAnySimpleType))
573
throw new XmlSchemaException(ResXml.Sch_InvalidSimpleTypeRestriction, restriction.
BaseTypeName
.ToString(), simpleType);
575
XmlSchemaSimpleType type = GetSimpleType(restriction.
BaseTypeName
);
587
throw new XmlSchemaException(ResXml.Sch_UndeclaredSimpleType, restriction.
BaseTypeName
.ToString(), simpleType);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (4)
784
if (restriction.
BaseTypeName
== stype.QualifiedName)
1235
if (!restriction.
BaseTypeName
.IsEmpty)
1243
if (restriction.
BaseTypeName
.IsEmpty)
1249
ValidateQNameAttribute(restriction, "base", restriction.
BaseTypeName
);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (6)
638
if (restriction.
BaseTypeName
.IsEmpty)
644
else if (simpleType.Redefined != null && restriction.
BaseTypeName
== simpleType.Redefined.QualifiedName)
652
if (restriction.
BaseTypeName
.Equals(DatatypeImplementation.QnAnySimpleType))
657
throw new XmlSchemaException(ResXml.Sch_InvalidSimpleTypeRestriction, restriction.
BaseTypeName
.ToString(), simpleType);
660
XmlSchemaSimpleType type = GetSimpleType(restriction.
BaseTypeName
);
672
throw new XmlSchemaException(ResXml.Sch_UndeclaredSimpleType, restriction.
BaseTypeName
.ToString(), restriction);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaSimpleType.cs (1)
53
return ((XmlSchemaSimpleTypeRestriction)_content).
BaseTypeName
;
FrameworkFork\Microsoft.Xml\Xml\Serialization\ImportContext.cs (2)
399
baseName = ((XmlSchemaSimpleTypeRestriction)content).
BaseTypeName
;
413
baseName = ((XmlSchemaSimpleTypeRestriction)content).
BaseTypeName
;
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (2)
640
if (!o.
@BaseTypeName
.IsEmpty)
642
WriteAttribute(@"base", @"", o.
@BaseTypeName
);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (6)
1790
AddReference(restriction.
BaseTypeName
, TypesInUse, ResXml.XmlCircularTypeReference);
1791
mapping = ImportDataType(FindDataType(restriction.
BaseTypeName
, flags), restriction.
BaseTypeName
.Namespace, identifier, null, flags, false);
1792
if (restriction.
BaseTypeName
.Namespace != XmlSchema.Namespace)
1793
RemoveReference(restriction.
BaseTypeName
, TypesInUse);
1978
return ((XmlSchemaSimpleTypeRestriction)content).
BaseTypeName
;
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaImporter.cs (5)
554
if (restriction.
BaseTypeName
!= XmlQualifiedName.Empty)
556
return ((restriction.
BaseTypeName
== expectedBase && restriction.Facets.Count > 0) || ImportType(restriction.
BaseTypeName
) is EnumDataContract);
1228
if (!restriction.
BaseTypeName
.IsEmpty)
1229
dataContract = ImportType(restriction.
BaseTypeName
);
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
3248
WriteAttribute(@"base", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.
@BaseTypeName
)));