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