106 references to QualifiedName
System.Data.Common (17)
System\Data\SimpleType.cs (3)
41_ns = (node.QualifiedName != null) ? node.QualifiedName.Namespace : ""; 59if ((ancestor != null) && (ancestor.QualifiedName.Namespace != Keywords.XSDNS))
System\Data\XMLSchema.cs (14)
213_schemaTypes![type.QualifiedName] = type; 222_udSimpleTypes[type.QualifiedName.ToString()] = xmlSimpleType; 223DataColumn? dc = (DataColumn?)_existingSimpleTypeMap![type.QualifiedName.ToString()]; 1968if (!string.IsNullOrEmpty(typeNode.QualifiedName.Name) && typeNode.QualifiedName.Namespace != Keywords.XSDNS) 1971strType = typeNode.QualifiedName.ToString(); // use qualified name 1972type = ParseDataType(typeNode.QualifiedName.ToString()); 1977if ((ancestor != null) && (ancestor.QualifiedName.Namespace != Keywords.XSDNS)) 2226if (!string.IsNullOrEmpty(node.QualifiedName.Name) && node.QualifiedName.Namespace != Keywords.XSDNS) 2229strType = node.QualifiedName.ToString(); // use qualified name 2230type = ParseDataType(node.QualifiedName.ToString()); // search with QName 2391if (!string.IsNullOrEmpty(((XmlSchemaSimpleType)typeNode).Name) && ((XmlSchemaSimpleType)typeNode).QualifiedName.Namespace != Keywords.XSDNS) 2393strType = ((XmlSchemaSimpleType)typeNode).QualifiedName.ToString(); // use qualified name
System.Private.DataContractSerialization (2)
System\Runtime\Serialization\SchemaImporter.cs (2)
403return ImportType(type, type.QualifiedName, false/*isAnonymous*/); 482if (type.QualifiedName != XmlQualifiedName.Empty)
System.Private.Xml (87)
System\Xml\Core\XmlValidatingReaderImpl.cs (1)
848if (schemaTypeObj != null && schemaTypeObj.QualifiedName.Namespace == XmlReservedNs.NsXs)
System\Xml\Schema\BaseProcessor.cs (1)
202table.Insert(schemaType.QualifiedName, schemaType); //Update with redefined entry
System\Xml\Schema\DataTypeImplementation.cs (3)
196restContent.BaseTypeName = baseType.QualifiedName; 626if (simpleType == null || simpleType.QualifiedName.IsEmpty) 632typeName = simpleType.QualifiedName.ToString();
System\Xml\Schema\Preprocessor.cs (23)
745AddToTable(schema.SchemaTypes, complexType.QualifiedName, complexType); 750AddToTable(schema.SchemaTypes, simpleType.QualifiedName, simpleType); 808AddToTable(schema.SchemaTypes, type!.QualifiedName, type); 896complexType.QualifiedName.SetNamespace(targetNS); //Since PreprocessComplexType will use this.targetNamespace and that will be that of the root schema's 897if (redefine.SchemaTypes[complexType.QualifiedName] != null) 903AddToTable(redefine.SchemaTypes, complexType.QualifiedName, complexType); 904XmlSchemaType? originalType = (XmlSchemaType?)schemaToUpdate.SchemaTypes[complexType.QualifiedName]; 908SendValidationEvent(SR.Sch_ComponentRedefineNotFound, "<complexType>", complexType.QualifiedName.ToString(), complexType); 913schemaToUpdate.SchemaTypes.Insert(complexType.QualifiedName, complexType); 925simpleType.QualifiedName.SetNamespace(targetNS); //Since PreprocessSimpleType will use this.targetNamespace and that will be that of the root schema's 926if (redefine.SchemaTypes[simpleType.QualifiedName] != null) 932AddToTable(redefine.SchemaTypes, simpleType.QualifiedName, simpleType); 933XmlSchemaType? originalType = (XmlSchemaType?)schemaToUpdate.SchemaTypes[simpleType.QualifiedName]; 937SendValidationEvent(SR.Sch_ComponentRedefineNotFound, "<simpleType>", simpleType.QualifiedName.ToString(), simpleType); 942schemaToUpdate.SchemaTypes.Insert(simpleType.QualifiedName, simpleType); 1100if (restriction.BaseTypeName == stype.QualifiedName) 1138if (baseName == ctype.QualifiedName) 1710if (complexType.QualifiedName == XmlQualifiedName.Empty) 1716SendValidationEvent(SR.Sch_NoRestOrExtQName, complexType.QualifiedName.Name, complexType.QualifiedName.Namespace, complexType); 1764if (complexType.QualifiedName == XmlQualifiedName.Empty) 1770SendValidationEvent(SR.Sch_NoRestOrExtQName, complexType.QualifiedName.Name, complexType.QualifiedName.Namespace, complexType);
System\Xml\Schema\SchemaCollectionCompiler.cs (7)
295schemaInfo.TargetNamespaces[type!.QualifiedName.Namespace] = true; 299schemaInfo.ElementDeclsByType.Add(type.QualifiedName, type.ElementDecl!); 571else if (simpleType.Redefined != null && restriction.BaseTypeName == simpleType.Redefined.QualifiedName) 804if (complexType.Redefined != null && simpleExtension.BaseTypeName == complexType.Redefined.QualifiedName) 844if (complexType.Redefined != null && simpleRestriction.BaseTypeName == complexType.Redefined.QualifiedName) 928if (complexType.Redefined != null && complexExtension.BaseTypeName == complexType.Redefined.QualifiedName) 994if (complexType.Redefined != null && complexRestriction.BaseTypeName == complexType.Redefined.QualifiedName)
System\Xml\Schema\SchemaCollectionpreProcessor.cs (17)
523AddToTable(schema.SchemaTypes, type!.QualifiedName, type); 552AddToTable(schema.SchemaTypes, complexType.QualifiedName, complexType); 557AddToTable(schema.SchemaTypes, simpleType.QualifiedName, simpleType); 639if (redefine.SchemaTypes[complexType.QualifiedName] != null) 645AddToTable(redefine.SchemaTypes, complexType.QualifiedName, complexType); 646XmlSchemaType? type = (XmlSchemaType?)redefine.Schema!.SchemaTypes[complexType.QualifiedName]; 668if (redefine.SchemaTypes[simpleType.QualifiedName] != null) 674AddToTable(redefine.SchemaTypes, simpleType.QualifiedName, simpleType); 675XmlSchemaType? type = (XmlSchemaType?)redefine.Schema!.SchemaTypes[simpleType.QualifiedName]; 776if (restriction.BaseTypeName == stype.QualifiedName) 813if (baseName == ctype.QualifiedName) 1375if (complexType.QualifiedName == XmlQualifiedName.Empty) 1381SendValidationEvent(SR.Sch_NoRestOrExtQName, complexType.QualifiedName.Name, complexType.QualifiedName.Namespace, complexType); 1429if (complexType.QualifiedName == XmlQualifiedName.Empty) 1435SendValidationEvent(SR.Sch_NoRestOrExtQName, complexType.QualifiedName.Name, complexType.QualifiedName.Namespace, complexType);
System\Xml\Schema\SchemaSetCompiler.cs (10)
112AddToTable(_schemaTypes, type!.QualifiedName, type); 136_schemaForSchema.SchemaTypes.Replace(builtInType.QualifiedName, builtInType); 137_schemaTypes.Replace(builtInType.QualifiedName, builtInType); 162schemaInfo.ElementDeclsByType.Add(type!.QualifiedName, type.ElementDecl!); 314if (complexType!.QualifiedName == DatatypeImplementation.QnAnyType) 657else if (simpleType.Redefined != null && restriction.BaseTypeName == simpleType.Redefined.QualifiedName) 882if (complexType.Redefined != null && simpleExtension.BaseTypeName == complexType.Redefined.QualifiedName) 924if (complexType.Redefined != null && simpleRestriction.BaseTypeName == complexType.Redefined.QualifiedName) 1011if (complexType.Redefined != null && complexExtension.BaseTypeName == complexType.Redefined.QualifiedName) 1082if (complexType.Redefined != null && complexRestriction.BaseTypeName == complexType.Redefined.QualifiedName)
System\Xml\Schema\XmlSchemaAttribute.cs (1)
102if (_attributeType.QualifiedName.Namespace == XmlReservedNs.NsXs)
System\Xml\Schema\XmlSchemaElement.cs (2)
166if (_elementType.QualifiedName.Namespace == XmlReservedNs.NsXs) 290if (complexType != null && complexType.QualifiedName.IsEmpty)
System\Xml\Schema\XmlSchemaSet.cs (4)
1149if (!AddToTable(schemaTypes!, schemaType!.QualifiedName, schemaType)) 1195schemaTypes!.Remove(schemaTypeToRemove.QualifiedName); 1373XmlSchemaType? schemaType = (XmlSchemaType?)schemaTypes![schemaTypeToRemove!.QualifiedName]; 1376schemaTypes.Remove(schemaTypeToRemove.QualifiedName);
System\Xml\Schema\XmlSchemaType.cs (3)
67if (qualifiedName.Equals(XmlSchemaComplexType.AnyType.QualifiedName)) 72if (qualifiedName.Equals(XmlSchemaComplexType.UntypedAnyType.QualifiedName)) 130if (_baseSchemaType.QualifiedName.Namespace == XmlReservedNs.NsXs)
System\Xml\Schema\XmlSchemaValidator.cs (1)
1506string typeName = decl.SchemaType.QualifiedName.ToString();
System\Xml\Schema\XmlValueConverter.cs (2)
422while (type!.QualifiedName.IsEmpty) 428return QNameToString(type.QualifiedName);
System\Xml\Serialization\Mappings.cs (1)
1287_xsiType = _xsdType.QualifiedName;
System\Xml\Serialization\SchemaObjectWriter.cs (2)
76return ((XmlSchemaComplexType)o).QualifiedName; 80return ((XmlSchemaSimpleType)o).QualifiedName;
System\Xml\Serialization\XmlSchemaImporter.cs (3)
406ImportType(type.QualifiedName, typeof(TypeMapping), null, TypeFlags.CanBeElementValue, false); 544throw new InvalidOperationException(SR.Format(SR.XmlTypeUsedTwice, type.QualifiedName.Name, type.QualifiedName.Namespace));
System\Xml\Serialization\XmlSchemas.cs (1)
475return type.QualifiedName;
System\Xml\Xsl\Runtime\XsltConvert.cs (1)
314Debug.Fail($"Conversion from {value.XmlType.QualifiedName.Name} to {destinationType} is not supported.");
System\Xml\Xsl\XmlQueryType.cs (4)
588if (SchemaType.QualifiedName.IsEmpty) 591s = QNameToString(SchemaType.QualifiedName); 614if (SchemaType.QualifiedName.IsEmpty) 621typeName = QNameToString(SchemaType.QualifiedName);