144 references to QualifiedName
System.Data (20)
fx\src\data\System\Data\SimpleType.cs (3)
52ns = (node.QualifiedName != null) ? node.QualifiedName.Namespace : ""; 96if ((ancestor != null) && (ancestor.QualifiedName.Namespace != Keywords.XSDNS)) { // I'm assuming that built-in types don't have a name!
fx\src\data\System\Data\SQLTypes\SqlTypesSchemaImporter.cs (1)
99XmlQualifiedName qname = basetype.QualifiedName;
fx\src\data\System\Data\XMLSchema.cs (16)
192schemaTypes[type.QualifiedName] = type; 202udSimpleTypes[type.QualifiedName.ToString()] = xmlSimpleType; 203DataColumn dc = (DataColumn)existingSimpleTypeMap[type.QualifiedName.ToString()]; 1701if (typeNode.QualifiedName.Name != null && typeNode.QualifiedName.Name.Length != 0 && typeNode.QualifiedName.Namespace != Keywords.XSDNS) { // this means UDSimpleType 1703strType = typeNode.QualifiedName.ToString(); // use qualifed name 1704type = ParseDataType(typeNode.QualifiedName.ToString()); 1708if ((ancestor != null) && (ancestor.QualifiedName.Namespace != Keywords.XSDNS)) { 1927if (node.QualifiedName.Name != null && node.QualifiedName.Name.Length != 0 && node.QualifiedName.Namespace != Keywords.XSDNS) { // this means UDSimpleType 1928strType = node.QualifiedName.ToString(); // use qualifed name 1929type = ParseDataType(node.QualifiedName.ToString());// search with QName 2067if (((XmlSchemaSimpleType)typeNode).Name != null && ((XmlSchemaSimpleType)typeNode).Name.Length != 0 && ((XmlSchemaSimpleType)typeNode).QualifiedName.Namespace != Keywords.XSDNS) { 2070strType = ((XmlSchemaSimpleType)typeNode).QualifiedName.ToString(); // use qualifed name
System.Data.SqlXml (5)
System\Xml\Xsl\Runtime\XsltConvert.cs (1)
320Debug.Fail("Conversion from " + value.XmlType.QualifiedName.Name + " to " + destinationType + " is not supported.");
System\Xml\Xsl\XmlQueryType.cs (4)
574if (SchemaType.QualifiedName.IsEmpty) 577s = QNameToString(SchemaType.QualifiedName); 598if (SchemaType.QualifiedName.IsEmpty) { 603typeName = QNameToString(SchemaType.QualifiedName);
System.Runtime.Serialization (2)
System\Runtime\Serialization\SchemaImporter.cs (2)
407return ImportType(type, type.QualifiedName, false/*isAnonymous*/); 490if (type.QualifiedName != XmlQualifiedName.Empty)
System.ServiceModel (2)
System\ServiceModel\Description\MessageContractExporter.cs (1)
199contentRestriction.BaseTypeName = XmlSchemaType.GetBuiltInSimpleType(XmlTypeCode.Base64Binary).QualifiedName;
System\ServiceModel\Description\MessageContractImporter.cs (1)
702return CheckAndAddPart(element.ElementSchemaType.QualifiedName, DataContractSerializerMessageContractImporter.StreamBodyTypeName, element.RefName.Name, GetLocalElementNamespace(element.RefName.Namespace, element, elementFormDefault), typeof(Stream), description, isReply);
System.ServiceModel.Web (27)
System\ServiceModel\Dispatcher\HelpExampleGenerator.cs (27)
320if (simpleType.QualifiedName.Namespace != System.Runtime.Serialization.Globals.SerializationNamespace 321&& simpleType.QualifiedName.Namespace != XmlSchemaNamespace 322&& simpleType.QualifiedName.Name != "guid") 355if (simpleType.QualifiedName.Name == "dateTime") 360else if (simpleType.QualifiedName.Name == "char") 365return GetConstantValue(simpleType.QualifiedName.Name); 491string value = GetConstantValue(simpleType.QualifiedName.Name); 493if (simpleType.QualifiedName.Name == "base64Binary") 505else if (simpleType.QualifiedName.Name == "dateTime") 534else if (simpleType.QualifiedName.Name == "char") 540if (simpleType.QualifiedName.Name == "integer" || 541simpleType.QualifiedName.Name == "int" || 542simpleType.QualifiedName.Name == "long" || 543simpleType.QualifiedName.Name == "unsignedLong" || 544simpleType.QualifiedName.Name == "unsignedInt" || 545simpleType.QualifiedName.Name == "short" || 546simpleType.QualifiedName.Name == "unsignedShort" || 547simpleType.QualifiedName.Name == "byte" || 548simpleType.QualifiedName.Name == "unsignedByte" || 549simpleType.QualifiedName.Name == "decimal" || 550simpleType.QualifiedName.Name == "float" || 551simpleType.QualifiedName.Name == "double" || 552simpleType.QualifiedName.Name == "negativeInteger" || 553simpleType.QualifiedName.Name == "nonPositiveInteger" || 554simpleType.QualifiedName.Name == "positiveInteger" || 555simpleType.QualifiedName.Name == "nonNegativeInteger") 559else if (simpleType.QualifiedName.Name == "boolean")
System.Web.Extensions (1)
Script\Services\WebServiceTypeData.cs (1)
219knownTypeData = ImportEnum(XmlConvert.DecodeName(schemaType.Name), schemaTargetNamespace, schemaType.QualifiedName, simpleTypeRestriction, schemaType.Annotation);
System.Web.Services (1)
System\Web\Services\Description\SchemaCompiler.cs (1)
150return type.QualifiedName;
System.Xml (86)
System\Xml\Core\XmlValidatingReaderImpl.cs (1)
715if ( schemaTypeObj != null && schemaTypeObj.QualifiedName.Namespace == XmlReservedNs.NsXs ) {
System\Xml\Schema\BaseProcessor.cs (1)
172table.Insert(schemaType.QualifiedName, schemaType); //Update with redefined entry
System\Xml\Schema\DataTypeImplementation.cs (3)
185restContent.BaseTypeName = baseType.QualifiedName; 555if (simpleType == null || simpleType.QualifiedName.IsEmpty) { //If no QName, get typecode, no line info since it is not pertinent without file name 559typeName = simpleType.QualifiedName.ToString();
System\Xml\Schema\Preprocessor.cs (23)
652AddToTable(schema.SchemaTypes, complexType.QualifiedName, complexType); 657AddToTable(schema.SchemaTypes, simpleType.QualifiedName, simpleType); 706AddToTable(schema.SchemaTypes, type.QualifiedName, type); 781complexType.QualifiedName.SetNamespace(targetNS); //Since PreprocessComplexType will use this.targetNamespace and that will be that of the root schema's 782if (redefine.SchemaTypes[complexType.QualifiedName] != null) { 786AddToTable(redefine.SchemaTypes, complexType.QualifiedName, complexType); 787XmlSchemaType originalType = (XmlSchemaType)schemaToUpdate.SchemaTypes[complexType.QualifiedName]; 790SendValidationEvent(Res.Sch_ComponentRedefineNotFound, "<complexType>", complexType.QualifiedName.ToString(), complexType); 794schemaToUpdate.SchemaTypes.Insert(complexType.QualifiedName, complexType); 805simpleType.QualifiedName.SetNamespace(targetNS); //Since PreprocessSimpleType will use this.targetNamespace and that will be that of the root schema's 806if (redefine.SchemaTypes[simpleType.QualifiedName] != null) { 810AddToTable(redefine.SchemaTypes, simpleType.QualifiedName, simpleType); 811XmlSchemaType originalType = (XmlSchemaType)schemaToUpdate.SchemaTypes[simpleType.QualifiedName]; 814SendValidationEvent(Res.Sch_ComponentRedefineNotFound, "<simpleType>", simpleType.QualifiedName.ToString(), simpleType); 818schemaToUpdate.SchemaTypes.Insert(simpleType.QualifiedName, simpleType); 941if (restriction.BaseTypeName == stype.QualifiedName) { 969if (baseName == ctype.QualifiedName) { 1416if (complexType.QualifiedName == XmlQualifiedName.Empty) { 1420SendValidationEvent(Res.Sch_NoRestOrExtQName, complexType.QualifiedName.Name, complexType.QualifiedName.Namespace, complexType); 1459if (complexType.QualifiedName == XmlQualifiedName.Empty) { 1463SendValidationEvent(Res.Sch_NoRestOrExtQName, complexType.QualifiedName.Name, complexType.QualifiedName.Namespace, complexType);
System\Xml\Schema\SchemaCollectionCompiler.cs (7)
225schemaInfo.TargetNamespaces[type.QualifiedName.Namespace] = true; 228schemaInfo.ElementDeclsByType.Add(type.QualifiedName, type.ElementDecl); 450else if (simpleType.Redefined != null && restriction.BaseTypeName == simpleType.Redefined.QualifiedName) { 635if (complexType.Redefined != null && simpleExtension.BaseTypeName == complexType.Redefined.QualifiedName) { 667if (complexType.Redefined != null && simpleRestriction.BaseTypeName == complexType.Redefined.QualifiedName) { 732if (complexType.Redefined != null && complexExtension.BaseTypeName == complexType.Redefined.QualifiedName) { 785if (complexType.Redefined != null && complexRestriction.BaseTypeName == complexType.Redefined.QualifiedName) {
System\Xml\Schema\SchemaCollectionpreProcessor.cs (17)
429AddToTable(schema.SchemaTypes, type.QualifiedName, type); 454AddToTable(schema.SchemaTypes, complexType.QualifiedName, complexType); 459AddToTable(schema.SchemaTypes, simpleType.QualifiedName, simpleType); 528if (redefine.SchemaTypes[complexType.QualifiedName] != null) { 532AddToTable(redefine.SchemaTypes, complexType.QualifiedName, complexType); 533XmlSchemaType type = (XmlSchemaType)redefine.Schema.SchemaTypes[complexType.QualifiedName]; 551if (redefine.SchemaTypes[simpleType.QualifiedName] != null) { 555AddToTable(redefine.SchemaTypes, simpleType.QualifiedName, simpleType); 556XmlSchemaType type = (XmlSchemaType)redefine.Schema.SchemaTypes[simpleType.QualifiedName]; 633if (restriction.BaseTypeName == stype.QualifiedName) { 661if (baseName == ctype.QualifiedName) { 1102if (complexType.QualifiedName == XmlQualifiedName.Empty) { 1106SendValidationEvent(Res.Sch_NoRestOrExtQName, complexType.QualifiedName.Name, complexType.QualifiedName.Namespace, complexType); 1145if (complexType.QualifiedName == XmlQualifiedName.Empty) { 1149SendValidationEvent(Res.Sch_NoRestOrExtQName, complexType.QualifiedName.Name, complexType.QualifiedName.Namespace, complexType);
System\Xml\Schema\SchemaSetCompiler.cs (10)
87AddToTable(schemaTypes, type.QualifiedName, type); 105schemaForSchema.SchemaTypes.Replace(builtInType.QualifiedName, builtInType); 106this.schemaTypes.Replace(builtInType.QualifiedName, builtInType); 126schemaInfo.ElementDeclsByType.Add(type.QualifiedName, type.ElementDecl); 241if (complexType.QualifiedName == DatatypeImplementation.QnAnyType) { //if it is built-in anyType dont clean it. 514else if (simpleType.Redefined != null && restriction.BaseTypeName == simpleType.Redefined.QualifiedName) { 693if (complexType.Redefined != null && simpleExtension.BaseTypeName == complexType.Redefined.QualifiedName) { 725if (complexType.Redefined != null && simpleRestriction.BaseTypeName == complexType.Redefined.QualifiedName) { 790if (complexType.Redefined != null && complexExtension.BaseTypeName == complexType.Redefined.QualifiedName) { 844if (complexType.Redefined != null && complexRestriction.BaseTypeName == complexType.Redefined.QualifiedName) {
System\Xml\Schema\XmlSchemaAttribute.cs (1)
137if (attributeType.QualifiedName.Namespace == XmlReservedNs.NsXs) {
System\Xml\Schema\XmlSchemaElement.cs (2)
217if (elementType.QualifiedName.Namespace == XmlReservedNs.NsXs) { 331if (complexType != null && complexType.QualifiedName.IsEmpty) {
System\Xml\Schema\XmlSchemaSet.cs (4)
1110if (!AddToTable(schemaTypes, schemaType.QualifiedName, schemaType)) { 1144schemaTypes.Remove(schemaTypeToRemove.QualifiedName); 1289XmlSchemaType schemaType = (XmlSchemaType)schemaTypes[schemaTypeToRemove.QualifiedName]; 1291schemaTypes.Remove(schemaTypeToRemove.QualifiedName);
System\Xml\Schema\XmlSchemaType.cs (3)
71if (qualifiedName.Equals(XmlSchemaComplexType.AnyType.QualifiedName)) { 74if (qualifiedName.Equals(XmlSchemaComplexType.UntypedAnyType.QualifiedName)) { 129if (baseSchemaType.QualifiedName.Namespace == XmlReservedNs.NsXs) {
System\Xml\Schema\XmlSchemaValidator.cs (1)
1278string typeName = decl.SchemaType.QualifiedName.ToString();
System\Xml\Schema\XmlValueConverter.cs (2)
500while (type.QualifiedName.IsEmpty) { 505return QNameToString(type.QualifiedName);
System\Xml\Serialization\Mappings.cs (1)
1139xsiType = xsdType.QualifiedName;
System\Xml\Serialization\SchemaObjectWriter.cs (2)
65return ((XmlSchemaComplexType)o).QualifiedName; 68return ((XmlSchemaSimpleType)o).QualifiedName;
System\Xml\Serialization\SoapSchemaImporter.cs (4)
221ImportType(type.QualifiedName, false); 316throw new InvalidOperationException(Res.GetString(Res.XmlInvalidAnyAttributeUse, type.Name, type.QualifiedName.Namespace)); 323throw new InvalidOperationException(Res.GetString(Res.XmlSoapInvalidAttributeUse, type.Name, type.QualifiedName.Namespace)); 327if (attr.Use != XmlSchemaUse.Prohibited) throw new InvalidOperationException(Res.GetString(Res.XmlSoapInvalidAttributeUse, type.Name, type.QualifiedName.Namespace));
System\Xml\Serialization\XmlSchemaImporter.cs (3)
456ImportType(type.QualifiedName, typeof(TypeMapping), null, TypeFlags.CanBeElementValue, false); 568throw new InvalidOperationException(Res.GetString(Res.XmlTypeUsedTwice, type.QualifiedName.Name, type.QualifiedName.Namespace));
System\Xml\Serialization\XmlSchemas.cs (1)
484return type.QualifiedName;