405 instantiations of XmlQualifiedName
dotnet-svcutil-lib (405)
FrameworkFork\Microsoft.Xml\Xml\BinaryXml\XmlBinaryReader.cs (2)
4199return new XmlQualifiedName(qname.localname, qname.namespaceUri); 4398new XmlQualifiedName(qname.localname, qname.namespaceUri),
FrameworkFork\Microsoft.Xml\Xml\Cache\XPathDocumentBuilder.cs (3)
168_idAttrName = (XmlQualifiedName)_elemIdMap[new XmlQualifiedName(localName, prefix)]; 595_elemIdMap.Add(new XmlQualifiedName(attrList.LocalName, attrList.Prefix), 596new XmlQualifiedName(idAttribute.LocalName, idAttribute.Prefix));
FrameworkFork\Microsoft.Xml\Xml\Core\QueryOutputWriter.cs (1)
59_qnameCData = new XmlQualifiedName();
FrameworkFork\Microsoft.Xml\Xml\Core\QueryOutputWriterV1.cs (1)
80_qnameCData = new XmlQualifiedName();
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (2)
6161SchemaEntity schemaEntity = new SchemaEntity(new XmlQualifiedName(name), false); 6173SchemaEntity schemaEntity = new SchemaEntity(new XmlQualifiedName(name), false);
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentSchemaValidator.cs (1)
586XmlQualifiedName attName = new XmlQualifiedName(attributeToValidate.LocalName, attributeToValidate.NamespaceURI);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (1)
633XmlQualifiedName qname = new XmlQualifiedName(elem.LocalName, schInfo.SchemaType == SchemaType.DTD ? elem.Prefix : elem.NamespaceURI);
FrameworkFork\Microsoft.Xml\Xml\schema\basevalidator.cs (3)
55elementName = new XmlQualifiedName(); 288if (!sinfo.GeneralEntities.TryGetValue(new XmlQualifiedName(name), out en)) 314if (!sinfo.GeneralEntities.TryGetValue(new XmlQualifiedName(name), out en))
FrameworkFork\Microsoft.Xml\Xml\schema\DatatypeImplementation.cs (10)
121internal static XmlQualifiedName QnAnySimpleType = new XmlQualifiedName("anySimpleType", XmlReservedNs.NsXs); 122internal static XmlQualifiedName QnAnyType = new XmlQualifiedName("anyType", XmlReservedNs.NsXs); 235qname = new XmlQualifiedName(sdm.Name, XmlReservedNs.NsXs); 251qname = new XmlQualifiedName(sdm.Name, XmlReservedNs.NsXs); 271XmlSchemaSimpleType derivedType = (XmlSchemaSimpleType)s_builtinTypes[new XmlQualifiedName(sdm.Name, XmlReservedNs.NsXs)]; 280baseType = (XmlSchemaSimpleType)s_builtinTypes[new XmlQualifiedName(((SchemaDatatypeMap)(s_xsdTypes[sdm.ParentIndex])).Name, XmlReservedNs.NsXs)]; 286qname = new XmlQualifiedName("anyAtomicType", XmlReservedNs.NsXQueryDataType); 294qname = new XmlQualifiedName("untypedAtomic", XmlReservedNs.NsXQueryDataType); 302qname = new XmlQualifiedName("yearMonthDuration", XmlReservedNs.NsXQueryDataType); 310qname = new XmlQualifiedName("dayTimeDuration", XmlReservedNs.NsXQueryDataType);
FrameworkFork\Microsoft.Xml\Xml\schema\DtdParser.cs (4)
291_schemaInfo.DocTypeName = new XmlQualifiedName(_nameTable.Add(docTypeName)); 295_schemaInfo.DocTypeName = new XmlQualifiedName(_nameTable.Add(docTypeName.Substring(0, colonPos)), 3229return new XmlQualifiedName(_nameTable.Add(_chars, _tokenStartPos, _curPos - _tokenStartPos)); 3235return new XmlQualifiedName(_nameTable.Add(_chars, _colonPos + 1, _curPos - _colonPos - 1),
FrameworkFork\Microsoft.Xml\Xml\schema\dtdvalidator.cs (2)
83if (!GenEntity(new XmlQualifiedName(reader.LocalName, reader.Prefix))) 182SchemaAttDef attnDef = context.ElementDecl.GetAttDef(new XmlQualifiedName(reader.LocalName, reader.Prefix));
FrameworkFork\Microsoft.Xml\Xml\schema\Inference\infer.cs (24)
27internal static XmlQualifiedName ST_boolean = new XmlQualifiedName("boolean", XmlSchema.Namespace); 28internal static XmlQualifiedName ST_byte = new XmlQualifiedName("byte", XmlSchema.Namespace); 29internal static XmlQualifiedName ST_unsignedByte = new XmlQualifiedName("unsignedByte", XmlSchema.Namespace); 30internal static XmlQualifiedName ST_short = new XmlQualifiedName("short", XmlSchema.Namespace); 31internal static XmlQualifiedName ST_unsignedShort = new XmlQualifiedName("unsignedShort", XmlSchema.Namespace); 32internal static XmlQualifiedName ST_int = new XmlQualifiedName("int", XmlSchema.Namespace); 33internal static XmlQualifiedName ST_unsignedInt = new XmlQualifiedName("unsignedInt", XmlSchema.Namespace); 34internal static XmlQualifiedName ST_long = new XmlQualifiedName("long", XmlSchema.Namespace); 35internal static XmlQualifiedName ST_unsignedLong = new XmlQualifiedName("unsignedLong", XmlSchema.Namespace); 36internal static XmlQualifiedName ST_integer = new XmlQualifiedName("integer", XmlSchema.Namespace); 37internal static XmlQualifiedName ST_decimal = new XmlQualifiedName("decimal", XmlSchema.Namespace); 38internal static XmlQualifiedName ST_float = new XmlQualifiedName("float", XmlSchema.Namespace); 39internal static XmlQualifiedName ST_double = new XmlQualifiedName("double", XmlSchema.Namespace); 40internal static XmlQualifiedName ST_duration = new XmlQualifiedName("duration", XmlSchema.Namespace); 41internal static XmlQualifiedName ST_dateTime = new XmlQualifiedName("dateTime", XmlSchema.Namespace); 42internal static XmlQualifiedName ST_time = new XmlQualifiedName("time", XmlSchema.Namespace); 43internal static XmlQualifiedName ST_date = new XmlQualifiedName("date", XmlSchema.Namespace); 44internal static XmlQualifiedName ST_gYearMonth = new XmlQualifiedName("gYearMonth", XmlSchema.Namespace); 45internal static XmlQualifiedName ST_string = new XmlQualifiedName("string", XmlSchema.Namespace); 46internal static XmlQualifiedName ST_anySimpleType = new XmlQualifiedName("anySimpleType", XmlSchema.Namespace); 330attributeReference.RefName = new XmlQualifiedName(localName, childURI); 389attributeReference.RefName = new XmlQualifiedName(localName, childURI); 616elementReference.RefName = new XmlQualifiedName(localName, childURI); 909XmlQualifiedName qname = new XmlQualifiedName(_xtr.LocalName, _xtr.NamespaceURI);
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (16)
449lang.SchemaTypeName = new XmlQualifiedName("language", XmlReservedNs.NsXs); 454xmlbase.SchemaTypeName = new XmlQualifiedName("anyURI", XmlReservedNs.NsXs); 461r.BaseTypeName = new XmlQualifiedName("NCName", XmlReservedNs.NsXs); 476langRef.RefName = new XmlQualifiedName("lang", XmlReservedNs.NsXml); 479spaceRef.RefName = new XmlQualifiedName("space", XmlReservedNs.NsXml); 482baseRef.RefName = new XmlQualifiedName("base", XmlReservedNs.NsXml); 1185attribute.SetQualifiedName(new XmlQualifiedName(attribute.Name, _targetNamespace)); 1209attribute.SetQualifiedName(new XmlQualifiedName(attribute.Name, (attribute.Form == XmlSchemaForm.Qualified || (attribute.Form == XmlSchemaForm.None && _attributeFormDefault == XmlSchemaForm.Qualified)) ? _targetNamespace : null)); 1281attributeGroup.SetQualifiedName(new XmlQualifiedName(attributeGroup.Name, _targetNamespace)); 1297element.SetQualifiedName(new XmlQualifiedName(element.Name, _targetNamespace)); 1353element.SetQualifiedName(new XmlQualifiedName(element.Name, (element.Form == XmlSchemaForm.Qualified || (element.Form == XmlSchemaForm.None && _elementFormDefault == XmlSchemaForm.Qualified)) ? _targetNamespace : null)); 1474constraint.SetQualifiedName(new XmlQualifiedName(constraint.Name, _targetNamespace)); 1542simpleType.SetQualifiedName(new XmlQualifiedName(simpleType.Name, _targetNamespace)); 1683complexType.SetQualifiedName(new XmlQualifiedName(complexType.Name, _targetNamespace)); 1876group.SetQualifiedName(new XmlQualifiedName(group.Name, _targetNamespace)); 1906notation.QualifiedName = new XmlQualifiedName(notation.Name, _targetNamespace);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (10)
834attribute.SetQualifiedName(new XmlQualifiedName(attribute.Name, _targetNamespace)); 858attribute.SetQualifiedName(new XmlQualifiedName(attribute.Name, (attribute.Form == XmlSchemaForm.Qualified || (attribute.Form == XmlSchemaForm.None && _attributeFormDefault == XmlSchemaForm.Qualified)) ? _targetNamespace : null)); 928attributeGroup.SetQualifiedName(new XmlQualifiedName(attributeGroup.Name, _targetNamespace)); 944element.SetQualifiedName(new XmlQualifiedName(element.Name, _targetNamespace)); 1000element.SetQualifiedName(new XmlQualifiedName(element.Name, (element.Form == XmlSchemaForm.Qualified || (element.Form == XmlSchemaForm.None && _elementFormDefault == XmlSchemaForm.Qualified)) ? _targetNamespace : null)); 1119constraint.SetQualifiedName(new XmlQualifiedName(constraint.Name, _targetNamespace)); 1187simpleType.SetQualifiedName(new XmlQualifiedName(simpleType.Name, _targetNamespace)); 1326complexType.SetQualifiedName(new XmlQualifiedName(complexType.Name, _targetNamespace)); 1519group.SetQualifiedName(new XmlQualifiedName(group.Name, _targetNamespace)); 1549notation.QualifiedName = new XmlQualifiedName(notation.Name, _targetNamespace);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaElementDecl.cs (1)
82XmlQualifiedName qname = new XmlQualifiedName(localName, prefix);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaInfo.cs (2)
430XmlQualifiedName qname = new XmlQualifiedName(prefix, localName); 454XmlQualifiedName qname = new XmlQualifiedName(name);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaNames.cs (124)
188QnPCData = new XmlQualifiedName(nameTable.Add("#PCDATA")); 189QnXml = new XmlQualifiedName(nameTable.Add("xml")); 190QnXmlNs = new XmlQualifiedName(nameTable.Add("xmlns"), NsXmlNs); 191QnDtDt = new XmlQualifiedName(nameTable.Add("dt"), NsDataType); 192QnXmlLang = new XmlQualifiedName(nameTable.Add("lang"), NsXml); 195QnName = new XmlQualifiedName(nameTable.Add("name")); 196QnType = new XmlQualifiedName(nameTable.Add("type")); 197QnMaxOccurs = new XmlQualifiedName(nameTable.Add("maxOccurs")); 198QnMinOccurs = new XmlQualifiedName(nameTable.Add("minOccurs")); 199QnInfinite = new XmlQualifiedName(nameTable.Add("*")); 200QnModel = new XmlQualifiedName(nameTable.Add("model")); 201QnOpen = new XmlQualifiedName(nameTable.Add("open")); 202QnClosed = new XmlQualifiedName(nameTable.Add("closed")); 203QnContent = new XmlQualifiedName(nameTable.Add("content")); 204QnMixed = new XmlQualifiedName(nameTable.Add("mixed")); 205QnEmpty = new XmlQualifiedName(nameTable.Add("empty")); 206QnEltOnly = new XmlQualifiedName(nameTable.Add("eltOnly")); 207QnTextOnly = new XmlQualifiedName(nameTable.Add("textOnly")); 208QnOrder = new XmlQualifiedName(nameTable.Add("order")); 209QnSeq = new XmlQualifiedName(nameTable.Add("seq")); 210QnOne = new XmlQualifiedName(nameTable.Add("one")); 211QnMany = new XmlQualifiedName(nameTable.Add("many")); 212QnRequired = new XmlQualifiedName(nameTable.Add("required")); 213QnYes = new XmlQualifiedName(nameTable.Add("yes")); 214QnNo = new XmlQualifiedName(nameTable.Add("no")); 215QnString = new XmlQualifiedName(nameTable.Add("string")); 216QnID = new XmlQualifiedName(nameTable.Add("id")); 217QnIDRef = new XmlQualifiedName(nameTable.Add("idref")); 218QnIDRefs = new XmlQualifiedName(nameTable.Add("idrefs")); 219QnEntity = new XmlQualifiedName(nameTable.Add("entity")); 220QnEntities = new XmlQualifiedName(nameTable.Add("entities")); 221QnNmToken = new XmlQualifiedName(nameTable.Add("nmtoken")); 222QnNmTokens = new XmlQualifiedName(nameTable.Add("nmtokens")); 223QnEnumeration = new XmlQualifiedName(nameTable.Add("enumeration")); 224QnDefault = new XmlQualifiedName(nameTable.Add("default")); 227QnTargetNamespace = new XmlQualifiedName(nameTable.Add("targetNamespace")); 228QnVersion = new XmlQualifiedName(nameTable.Add("version")); 229QnFinalDefault = new XmlQualifiedName(nameTable.Add("finalDefault")); 230QnBlockDefault = new XmlQualifiedName(nameTable.Add("blockDefault")); 231QnFixed = new XmlQualifiedName(nameTable.Add("fixed")); 232QnAbstract = new XmlQualifiedName(nameTable.Add("abstract")); 233QnBlock = new XmlQualifiedName(nameTable.Add("block")); 234QnSubstitutionGroup = new XmlQualifiedName(nameTable.Add("substitutionGroup")); 235QnFinal = new XmlQualifiedName(nameTable.Add("final")); 236QnNillable = new XmlQualifiedName(nameTable.Add("nillable")); 237QnRef = new XmlQualifiedName(nameTable.Add("ref")); 238QnBase = new XmlQualifiedName(nameTable.Add("base")); 239QnDerivedBy = new XmlQualifiedName(nameTable.Add("derivedBy")); 240QnNamespace = new XmlQualifiedName(nameTable.Add("namespace")); 241QnProcessContents = new XmlQualifiedName(nameTable.Add("processContents")); 242QnRefer = new XmlQualifiedName(nameTable.Add("refer")); 243QnPublic = new XmlQualifiedName(nameTable.Add("public")); 244QnSystem = new XmlQualifiedName(nameTable.Add("system")); 245QnSchemaLocation = new XmlQualifiedName(nameTable.Add("schemaLocation")); 246QnValue = new XmlQualifiedName(nameTable.Add("value")); 247QnUse = new XmlQualifiedName(nameTable.Add("use")); 248QnForm = new XmlQualifiedName(nameTable.Add("form")); 249QnAttributeFormDefault = new XmlQualifiedName(nameTable.Add("attributeFormDefault")); 250QnElementFormDefault = new XmlQualifiedName(nameTable.Add("elementFormDefault")); 251QnSource = new XmlQualifiedName(nameTable.Add("source")); 252QnMemberTypes = new XmlQualifiedName(nameTable.Add("memberTypes")); 253QnItemType = new XmlQualifiedName(nameTable.Add("itemType")); 254QnXPath = new XmlQualifiedName(nameTable.Add("xpath")); 257QnXdrSchema = new XmlQualifiedName(XdrSchema, NsXdr); 258QnXdrElementType = new XmlQualifiedName(nameTable.Add("ElementType"), NsXdr); 259QnXdrElement = new XmlQualifiedName(nameTable.Add("element"), NsXdr); 260QnXdrGroup = new XmlQualifiedName(nameTable.Add("group"), NsXdr); 261QnXdrAttributeType = new XmlQualifiedName(nameTable.Add("AttributeType"), NsXdr); 262QnXdrAttribute = new XmlQualifiedName(nameTable.Add("attribute"), NsXdr); 263QnXdrDataType = new XmlQualifiedName(nameTable.Add("datatype"), NsXdr); 264QnXdrDescription = new XmlQualifiedName(nameTable.Add("description"), NsXdr); 265QnXdrExtends = new XmlQualifiedName(nameTable.Add("extends"), NsXdr); 268QnXdrAliasSchema = new XmlQualifiedName(nameTable.Add("Schema"), NsDataTypeAlias); 271QnDtType = new XmlQualifiedName(nameTable.Add("type"), NsDataType); 272QnDtValues = new XmlQualifiedName(nameTable.Add("values"), NsDataType); 273QnDtMaxLength = new XmlQualifiedName(nameTable.Add("maxLength"), NsDataType); 274QnDtMinLength = new XmlQualifiedName(nameTable.Add("minLength"), NsDataType); 275QnDtMax = new XmlQualifiedName(nameTable.Add("max"), NsDataType); 276QnDtMin = new XmlQualifiedName(nameTable.Add("min"), NsDataType); 277QnDtMinExclusive = new XmlQualifiedName(nameTable.Add("minExclusive"), NsDataType); 278QnDtMaxExclusive = new XmlQualifiedName(nameTable.Add("maxExclusive"), NsDataType); 281QnXsdSchema = new XmlQualifiedName(XsdSchema, NsXs); 282QnXsdAnnotation = new XmlQualifiedName(nameTable.Add("annotation"), NsXs); 283QnXsdInclude = new XmlQualifiedName(nameTable.Add("include"), NsXs); 284QnXsdImport = new XmlQualifiedName(nameTable.Add("import"), NsXs); 285QnXsdElement = new XmlQualifiedName(nameTable.Add("element"), NsXs); 286QnXsdAttribute = new XmlQualifiedName(nameTable.Add("attribute"), NsXs); 287QnXsdAttributeGroup = new XmlQualifiedName(nameTable.Add("attributeGroup"), NsXs); 288QnXsdAnyAttribute = new XmlQualifiedName(nameTable.Add("anyAttribute"), NsXs); 289QnXsdGroup = new XmlQualifiedName(nameTable.Add("group"), NsXs); 290QnXsdAll = new XmlQualifiedName(nameTable.Add("all"), NsXs); 291QnXsdChoice = new XmlQualifiedName(nameTable.Add("choice"), NsXs); 292QnXsdSequence = new XmlQualifiedName(nameTable.Add("sequence"), NsXs); 293QnXsdAny = new XmlQualifiedName(nameTable.Add("any"), NsXs); 294QnXsdNotation = new XmlQualifiedName(nameTable.Add("notation"), NsXs); 295QnXsdSimpleType = new XmlQualifiedName(nameTable.Add("simpleType"), NsXs); 296QnXsdComplexType = new XmlQualifiedName(nameTable.Add("complexType"), NsXs); 297QnXsdUnique = new XmlQualifiedName(nameTable.Add("unique"), NsXs); 298QnXsdKey = new XmlQualifiedName(nameTable.Add("key"), NsXs); 299QnXsdKeyRef = new XmlQualifiedName(nameTable.Add("keyref"), NsXs); 300QnXsdSelector = new XmlQualifiedName(nameTable.Add("selector"), NsXs); 301QnXsdField = new XmlQualifiedName(nameTable.Add("field"), NsXs); 302QnXsdMinExclusive = new XmlQualifiedName(nameTable.Add("minExclusive"), NsXs); 303QnXsdMinInclusive = new XmlQualifiedName(nameTable.Add("minInclusive"), NsXs); 304QnXsdMaxInclusive = new XmlQualifiedName(nameTable.Add("maxInclusive"), NsXs); 305QnXsdMaxExclusive = new XmlQualifiedName(nameTable.Add("maxExclusive"), NsXs); 306QnXsdTotalDigits = new XmlQualifiedName(nameTable.Add("totalDigits"), NsXs); 307QnXsdFractionDigits = new XmlQualifiedName(nameTable.Add("fractionDigits"), NsXs); 308QnXsdLength = new XmlQualifiedName(nameTable.Add("length"), NsXs); 309QnXsdMinLength = new XmlQualifiedName(nameTable.Add("minLength"), NsXs); 310QnXsdMaxLength = new XmlQualifiedName(nameTable.Add("maxLength"), NsXs); 311QnXsdEnumeration = new XmlQualifiedName(nameTable.Add("enumeration"), NsXs); 312QnXsdPattern = new XmlQualifiedName(nameTable.Add("pattern"), NsXs); 313QnXsdDocumentation = new XmlQualifiedName(nameTable.Add("documentation"), NsXs); 314QnXsdAppinfo = new XmlQualifiedName(nameTable.Add("appinfo"), NsXs); 315QnXsdComplexContent = new XmlQualifiedName(nameTable.Add("complexContent"), NsXs); 316QnXsdSimpleContent = new XmlQualifiedName(nameTable.Add("simpleContent"), NsXs); 317QnXsdRestriction = new XmlQualifiedName(nameTable.Add("restriction"), NsXs); 318QnXsdExtension = new XmlQualifiedName(nameTable.Add("extension"), NsXs); 319QnXsdUnion = new XmlQualifiedName(nameTable.Add("union"), NsXs); 320QnXsdList = new XmlQualifiedName(nameTable.Add("list"), NsXs); 321QnXsdWhiteSpace = new XmlQualifiedName(nameTable.Add("whiteSpace"), NsXs); 322QnXsdRedefine = new XmlQualifiedName(nameTable.Add("redefine"), NsXs); 323QnXsdAnyType = new XmlQualifiedName(nameTable.Add("anyType"), NsXs);
FrameworkFork\Microsoft.Xml\Xml\schema\XdrBuilder.cs (7)
427XmlQualifiedName qname = new XmlQualifiedName(name, XmlSchemaDatatype.XdrCanonizeUri(ns, _NameTable, _SchemaNames)); 453XmlQualifiedName qname = new XmlQualifiedName(name, XmlSchemaDatatype.XdrCanonizeUri(ns, _NameTable, _SchemaNames)); 474qnameValue = new XmlQualifiedName(qnameValue.Name, _TargetNamespace); 478qnameValue = new XmlQualifiedName(qnameValue.Name); 689gname = new XmlQualifiedName(gname.Name, builder._TargetNamespace); 1058qname = new XmlQualifiedName(qname.Name, builder._TargetNamespace); 1299gname = new XmlQualifiedName(qname.Name, builder._TargetNamespace);
FrameworkFork\Microsoft.Xml\Xml\schema\xdrvalidator.cs (1)
697return new XmlQualifiedName(name, XmlSchemaDatatype.XdrCanonizeUri(ns, NameTable, SchemaNames));
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexType.cs (1)
52s_untypedAnyType.SetQualifiedName(new XmlQualifiedName("untypedAny", XmlReservedNs.NsXQueryDataType));
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaDocumentation.cs (1)
24private static XmlSchemaSimpleType s_languageType = DatatypeImplementation.GetSimpleTypeFromXsdType(new XmlQualifiedName("language", XmlReservedNs.NsXs));
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaParticle.cs (1)
182return new XmlQualifiedName("*", ns.Length == 0 ? "##any" : ns);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaValidator.cs (6)
220_contextQName = new XmlQualifiedName(); //Re-use qname 554XmlQualifiedName attQName = new XmlQualifiedName(lName, ns); 2493tempXsiTypeSO.SetQualifiedName(new XmlQualifiedName("type", XmlReservedNs.NsXsi)); 2501tempxsiNilSO.SetQualifiedName(new XmlQualifiedName("nil", XmlReservedNs.NsXsi)); 2510tempxsiSLSO.SetQualifiedName(new XmlQualifiedName("schemaLocation", XmlReservedNs.NsXsi)); 2519tempxsiNoNsSLSO.SetQualifiedName(new XmlQualifiedName("noNamespaceSchemaLocation", XmlReservedNs.NsXsi));
FrameworkFork\Microsoft.Xml\Xml\schema\XmlValueConverter.cs (1)
732return new XmlQualifiedName(localName, ns);
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (2)
708XmlQualifiedName qname = new XmlQualifiedName(name, ns); 731XmlQualifiedName qname = new XmlQualifiedName(name, ns);
FrameworkFork\Microsoft.Xml\Xml\schema\xsdvalidator.cs (2)
410XmlSchemaSimpleType simpleType = DatatypeImplementation.GetSimpleTypeFromXsdType(new XmlQualifiedName(xsiType.Name, _nsXs)); 492XmlQualifiedName attQName = new XmlQualifiedName(reader.LocalName, reader.NamespaceURI);
FrameworkFork\Microsoft.Xml\Xml\Serialization\Mappings.cs (1)
116return new XmlQualifiedName(XmlConvert.EncodeLocalName(name.Substring(colon + 1)), XmlConvert.EncodeLocalName(name.Substring(0, colon))).ToString();
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (5)
101return new XmlQualifiedName(".sequence", Namespace(o)); 108return new XmlQualifiedName(".all", Namespace(o)); 115return new XmlQualifiedName(".choice", Namespace(o)); 120return new XmlQualifiedName("*", SchemaObjectWriter.ToString(((XmlSchemaAny)o).NamespaceList)); 126return new XmlQualifiedName("?", Namespace(o));
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapReflectionImporter.cs (1)
207throw new InvalidOperationException(string.Format(ResXml.XmlInvalidXsdDataType, dataType, "SoapElementAttribute.DataType", new XmlQualifiedName(dataType, XmlSchema.Namespace).ToString()));
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaExporter.cs (11)
24private static XmlQualifiedName s_arrayQName = new XmlQualifiedName(Soap.Array, Soap.Encoding); 25private static XmlQualifiedName s_arrayTypeQName = new XmlQualifiedName(Soap.ArrayType, Soap.Encoding); 212return new XmlQualifiedName(mapping.TypeDesc.DataType.Name, UrtTypes.Namespace); 217return new XmlQualifiedName(mapping.TypeDesc.DataType.Name, XmlSchema.Namespace); 250qname = new XmlQualifiedName(Soap.UrType, XmlSchema.Namespace); 271return new XmlQualifiedName(mapping.TypeName, mapping.Namespace); 314return new XmlQualifiedName(Soap.UrType, XmlSchema.Namespace); 346return new XmlQualifiedName(type.Name, mapping.Namespace); 365return new XmlQualifiedName(type.Name, mapping.Namespace); 418restriction.BaseTypeName = new XmlQualifiedName("string", XmlSchema.Namespace); 444return new XmlQualifiedName(mapping.TypeName, mapping.Namespace);
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaImporter.cs (1)
339ImportDerivedTypes(new XmlQualifiedName(type.Name, typeNs));
FrameworkFork\Microsoft.Xml\Xml\Serialization\Types.cs (30)
559AddNonXsdPrimitive(typeof(Guid), "guid", UrtTypes.Namespace, "Guid", new XmlQualifiedName("string", XmlSchema.Namespace), new XmlSchemaFacet[] { guidPattern }, TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired | TypeFlags.IgnoreDefault); 560AddNonXsdPrimitive(typeof(char), "char", UrtTypes.Namespace, "Char", new XmlQualifiedName("unsignedShort", XmlSchema.Namespace), new XmlSchemaFacet[0], TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.HasCustomFormatter | TypeFlags.IgnoreDefault); 615AddSoapEncodedPrimitive(typeof(string), "normalizedString", ns, "String", new XmlQualifiedName("normalizedString", XmlSchema.Namespace), TypeFlags.AmbiguousDataType | TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.Reference | TypeFlags.HasDefaultConstructor); 618AddSoapEncodedPrimitive(typeof(string), s_unsupportedTypes[i], ns, "String", new XmlQualifiedName(s_unsupportedTypes[i], XmlSchema.Namespace), TypeFlags.AmbiguousDataType | TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.Reference | TypeFlags.CollapseWhitespace); 621AddSoapEncodedPrimitive(typeof(string), "string", ns, "String", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.CanBeTextValue | TypeFlags.Reference); 622AddSoapEncodedPrimitive(typeof(int), "int", ns, "Int32", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 623AddSoapEncodedPrimitive(typeof(bool), "boolean", ns, "Boolean", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 624AddSoapEncodedPrimitive(typeof(short), "short", ns, "Int16", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 625AddSoapEncodedPrimitive(typeof(long), "long", ns, "Int64", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 626AddSoapEncodedPrimitive(typeof(float), "float", ns, "Single", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 627AddSoapEncodedPrimitive(typeof(double), "double", ns, "Double", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 628AddSoapEncodedPrimitive(typeof(decimal), "decimal", ns, "Decimal", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 629AddSoapEncodedPrimitive(typeof(DateTime), "dateTime", ns, "DateTime", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.HasCustomFormatter | TypeFlags.XmlEncodingNotRequired); 630AddSoapEncodedPrimitive(typeof(XmlQualifiedName), "QName", ns, "XmlQualifiedName", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.HasCustomFormatter | TypeFlags.HasIsEmpty | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired | TypeFlags.Reference); 631AddSoapEncodedPrimitive(typeof(byte), "unsignedByte", ns, "Byte", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 632AddSoapEncodedPrimitive(typeof(SByte), "byte", ns, "SByte", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 633AddSoapEncodedPrimitive(typeof(UInt16), "unsignedShort", ns, "UInt16", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 634AddSoapEncodedPrimitive(typeof(UInt32), "unsignedInt", ns, "UInt32", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 635AddSoapEncodedPrimitive(typeof(UInt64), "unsignedLong", ns, "UInt64", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired); 638AddSoapEncodedPrimitive(typeof(DateTime), "date", ns, "Date", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.AmbiguousDataType | TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.HasCustomFormatter | TypeFlags.XmlEncodingNotRequired); 639AddSoapEncodedPrimitive(typeof(DateTime), "time", ns, "Time", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.AmbiguousDataType | TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.HasCustomFormatter | TypeFlags.XmlEncodingNotRequired); 641AddSoapEncodedPrimitive(typeof(string), "Name", ns, "XmlName", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.AmbiguousDataType | TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.HasCustomFormatter | TypeFlags.Reference); 642AddSoapEncodedPrimitive(typeof(string), "NCName", ns, "XmlNCName", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.AmbiguousDataType | TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.HasCustomFormatter | TypeFlags.Reference); 643AddSoapEncodedPrimitive(typeof(string), "NMTOKEN", ns, "XmlNmToken", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.AmbiguousDataType | TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.HasCustomFormatter | TypeFlags.Reference); 644AddSoapEncodedPrimitive(typeof(string), "NMTOKENS", ns, "XmlNmTokens", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.AmbiguousDataType | TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.HasCustomFormatter | TypeFlags.Reference); 646AddSoapEncodedPrimitive(typeof(byte[]), "base64Binary", ns, "ByteArrayBase64", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.AmbiguousDataType | TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.HasCustomFormatter | TypeFlags.Reference | TypeFlags.IgnoreDefault | TypeFlags.XmlEncodingNotRequired); 647AddSoapEncodedPrimitive(typeof(byte[]), "hexBinary", ns, "ByteArrayHex", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.AmbiguousDataType | TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.HasCustomFormatter | TypeFlags.Reference | TypeFlags.IgnoreDefault | TypeFlags.XmlEncodingNotRequired); 649AddSoapEncodedPrimitive(typeof(string), "arrayCoordinate", ns, "String", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue); 650AddSoapEncodedPrimitive(typeof(byte[]), "base64", ns, "ByteArrayBase64", new XmlQualifiedName("base64Binary", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.CanBeElementValue | TypeFlags.IgnoreDefault | TypeFlags.Reference); 1434return new XmlQualifiedName(name, ns);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionImporter.cs (1)
402throw new InvalidOperationException(string.Format(ResXml.XmlInvalidXsdDataType, dataType, "XmlElementAttribute.DataType", new XmlQualifiedName(dataType, XmlSchema.Namespace).ToString()));
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (11)
71return (new XmlQualifiedName(xmlMembersMapping.Accessor.Name, xmlMembersMapping.Accessor.Namespace)); 448return new XmlQualifiedName(mapping.TypeDesc.DataType.Name, UrtTypes.Namespace); 564schemaElement.RefName = new XmlQualifiedName("schema", XmlSchema.Namespace); 611qname = new XmlQualifiedName(type.Name, mapping.Namespace); 617qname = new XmlQualifiedName(mapping.TypeDesc.DataType.Name, XmlSchema.Namespace); 682element.SchemaTypeName = new XmlQualifiedName(type.Name, mapping.Namespace); 735attribute.RefName = new XmlQualifiedName(accessor.Name, XmlReservedNs.NsXml); 797refAttribute.RefName = new XmlQualifiedName(accessor.Name, accessor.Namespace); 891refElement.RefName = new XmlQualifiedName(accessor.Name, accessor.Namespace); 1074XmlQualifiedName qname = new XmlQualifiedName(type.Name, mapping.Namespace); 1199restriction.BaseTypeName = new XmlQualifiedName("string", XmlSchema.Namespace);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (4)
490XmlQualifiedName qname = new XmlQualifiedName(typeName, ns); 576ImportDerivedTypes(new XmlQualifiedName(identifier, typeNs)); 1429ImportDerivedTypes(new XmlQualifiedName(identifier, ns)); 1990return new XmlQualifiedName("string", XmlSchema.Namespace);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationReader.cs (9)
895XmlQualifiedName empty = new XmlQualifiedName(string.Empty, _r.LookupNamespace("")); 1212return new XmlQualifiedName(_r.NameTable.Add(value), _r.LookupNamespace(String.Empty)); 1222return new XmlQualifiedName(_r.NameTable.Add(localName), ns); 1662Type arrayType = (Type)_types[new XmlQualifiedName(typeName, typeNs)]; 1688XmlQualifiedName urTypeName = new XmlQualifiedName(_urTypeID, _schemaNsID); 1914XmlQualifiedName urType = new XmlQualifiedName(_urTypeID, _r.NameTable.Add(XmlSchema.Namespace)); 1935typeId = new XmlQualifiedName(_r.NameTable.Add(_r.LocalName), _r.NameTable.Add(_r.NamespaceURI)); 1937typeId = new XmlQualifiedName(_r.NameTable.Add(name), _r.NameTable.Add(ns)); 1956XmlQualifiedName typeName = new XmlQualifiedName(_r.NameTable.Add(name), _r.NameTable.Add(ns));
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationWriter.cs (2)
243return new XmlQualifiedName(typeName, typeNs); 1166WriteElementQualifiedName(Soap12.RpcResult, Soap12.RpcNamespace, new XmlQualifiedName(name, ns), null);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializerNamespaces.cs (1)
102namespaceList.Add(new XmlQualifiedName(key, (string)Namespaces[key]));
FrameworkFork\Microsoft.Xml\Xml\XmlQualifiedName.cs (2)
35public static readonly XmlQualifiedName Empty = new XmlQualifiedName(string.Empty); 220return new XmlQualifiedName(localName, uri);
FrameworkFork\Microsoft.Xml\Xml\Xslt\XsltArgumentList.cs (3)
33return _parameters[new XmlQualifiedName(name, namespaceUri)]; 47XmlQualifiedName qname = new XmlQualifiedName(name, namespaceUri); 61XmlQualifiedName qname = new XmlQualifiedName(name, namespaceUri);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\ClassDataContract.cs (1)
856this.StableName = new XmlQualifiedName(GetStableNameAndSetHasDataContract(type).Name, ns.Value);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\CodeExporter.cs (1)
471DataContract containingDataContract = _dataContractSet[new XmlQualifiedName(containingTypeName, dataContract.StableName.Namespace)];
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\DataContract.cs (4)
836XmlQualifiedName qname = new XmlQualifiedName(name, ns); 1648return new XmlQualifiedName(name, ns); 1782return new XmlQualifiedName(localName, GetNamespace(ns)); 2461return new XmlQualifiedName(DataContract.EncodeLocalName(DataContract.ExpandGenericParameters(XmlConvert.DecodeName(_stableName.Name), this)), _stableName.Namespace);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\Globals.cs (2)
41s_idQualifiedName = new XmlQualifiedName(Globals.IdLocalName, Globals.SerializationNamespace); 54s_refQualifiedName = new XmlQualifiedName(Globals.RefLocalName, Globals.SerializationNamespace);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\KnownTypeDataContractResolver.cs (1)
58return _context.ResolveNameFromKnownTypes(new XmlQualifiedName(typeName, typeNamespace));
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaExporter.cs (11)
132typeName = new XmlQualifiedName(name, DataContract.GetDefaultStableNamespace(type)); 166s_anytypeQualifiedName = new XmlQualifiedName(Globals.AnyTypeLocalName, Globals.SchemaNamespace); 183s_stringQualifiedName = new XmlQualifiedName(Globals.StringLocalName, Globals.SchemaNamespace); 200s_defaultEnumBaseTypeName = new XmlQualifiedName(Globals.IntLocalName, Globals.SchemaNamespace); 217s_enumerationValueAnnotationName = new XmlQualifiedName(Globals.EnumerationValueLocalName, Globals.SerializationNamespace); 234s_surrogateDataAnnotationName = new XmlQualifiedName(Globals.SurrogateDataLocalName, Globals.SerializationNamespace); 251s_defaultValueAnnotation = new XmlQualifiedName(Globals.DefaultValueLocalName, Globals.SerializationNamespace); 268s_actualTypeAnnotationName = new XmlQualifiedName(Globals.ActualTypeLocalName, Globals.SerializationNamespace); 285s_isDictionaryAnnotationName = new XmlQualifiedName(Globals.IsDictionaryLocalName, Globals.SerializationNamespace); 302s_isValueTypeName = new XmlQualifiedName(Globals.IsValueTypeLocalName, Globals.SerializationNamespace); 314iSerializableFactoryTypeAttribute.RefName = new XmlQualifiedName(Globals.ISerializableFactoryTypeLocalName, Globals.SerializationNamespace);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaHelper.cs (1)
118return new XmlQualifiedName(schemaElement.Name, schema.TargetNamespace);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaImporter.cs (11)
259XmlQualifiedName currentTypeName = new XmlQualifiedName(schemaType.Name, schema.TargetNamespace); 296XmlQualifiedName currentElementName = new XmlQualifiedName(schemaElement.Name, schema.TargetNamespace); 364xmlDataContract.SetTopLevelElementName(new XmlQualifiedName(element.Name, ns)); 376typeQName = new XmlQualifiedName(typeQName.Name + i.ToString(NumberFormatInfo.InvariantInfo), typeQName.Namespace); 752XmlQualifiedName xlinqTypeName = new XmlQualifiedName("XElement", "http://schemas.datacontract.org/2004/07/System.Xml.Linq"); 984memberTypeContract = ImportAnonymousElement(element, new XmlQualifiedName(String.Format(CultureInfo.InvariantCulture, "{0}.{1}Type", typeName.Name, element.Name), typeName.Namespace)); 1054return new XmlQualifiedName(name, ns); 1083XmlQualifiedName shortName = new XmlQualifiedName(element.Name, typeName.Namespace); 1091XmlQualifiedName fullName = new XmlQualifiedName(String.Format(CultureInfo.InvariantCulture, "{0}.{1}Type", typeName.Name, element.Name), typeName.Namespace); 1129dataContract.ItemContract.StableName = new XmlQualifiedName(genericInfo.GetExpandedStableName().Name, typeName.Namespace); 1304GenericInfo genInfo = new GenericInfo(new XmlQualifiedName(name, ns), type.Name);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlObjectSerializerContext.cs (1)
268XmlQualifiedName qname = new XmlQualifiedName(typeName, typeNs);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlReaderDelegator.cs (1)
616return new XmlQualifiedName(name, ns);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\AddressingVersion.cs (14)
91new XmlQualifiedName(AddressingStrings.To, Addressing10Strings.Namespace), 92new XmlQualifiedName(AddressingStrings.From, Addressing10Strings.Namespace), 93new XmlQualifiedName(AddressingStrings.FaultTo, Addressing10Strings.Namespace), 94new XmlQualifiedName(AddressingStrings.ReplyTo, Addressing10Strings.Namespace), 95new XmlQualifiedName(AddressingStrings.MessageId, Addressing10Strings.Namespace), 96new XmlQualifiedName(AddressingStrings.RelatesTo, Addressing10Strings.Namespace), 97new XmlQualifiedName(AddressingStrings.Action, Addressing10Strings.Namespace) 114new XmlQualifiedName(AddressingStrings.To, Addressing200408Strings.Namespace), 115new XmlQualifiedName(AddressingStrings.From, Addressing200408Strings.Namespace), 116new XmlQualifiedName(AddressingStrings.FaultTo, Addressing200408Strings.Namespace), 117new XmlQualifiedName(AddressingStrings.ReplyTo, Addressing200408Strings.Namespace), 118new XmlQualifiedName(AddressingStrings.MessageId, Addressing200408Strings.Namespace), 119new XmlQualifiedName(AddressingStrings.RelatesTo, Addressing200408Strings.Namespace), 120new XmlQualifiedName(AddressingStrings.Action, Addressing200408Strings.Namespace)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CompositeDuplexBindingElement.cs (1)
79XmlQualifiedName refPropHeaderName = new XmlQualifiedName(XD.UtilityDictionary.UniqueEndpointHeaderName.Value,
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\OneWayBindingElement.cs (1)
117new XmlQualifiedName(DotNetOneWayStrings.HeaderName, DotNetOneWayStrings.Namespace)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransactionFlowBindingElement.cs (4)
214result = new MessagePartSpecification(new XmlQualifiedName(standardsManager.TrustDriver.IssuedTokensHeaderName, standardsManager.TrustDriver.IssuedTokensHeaderNamespace)); 252new XmlQualifiedName(CoordinationExternalStrings.CoordinationContext, CoordinationExternal10Strings.Namespace), 253new XmlQualifiedName(CoordinationExternalStrings.CoordinationContext, CoordinationExternal11Strings.Namespace), 254new XmlQualifiedName(OleTxTransactionExternalStrings.OleTxTransaction, OleTxTransactionExternalStrings.Namespace));
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportBindingElementImporter.cs (2)
211XmlQualifiedName wsdlBindingQName = new XmlQualifiedName(context.WsdlBinding.Name, context.WsdlBinding.ServiceDescription.TargetNamespace); 217XmlQualifiedName key = new XmlQualifiedName(context.WsdlBinding.Name, context.WsdlBinding.ServiceDescription.TargetNamespace);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\UnrecognizedAssertionsBindingElement.cs (1)
113return new UnrecognizedAssertionsBindingElement(new XmlQualifiedName(_wsdlBinding.Name, _wsdlBinding.Namespace), null);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\DataContractSerializerMessageContractImporter.cs (2)
28static internal XmlQualifiedName GenericMessageTypeName = new XmlQualifiedName(GenericMessageSchemaTypeName, GenericMessageSchemaTypeNamespace); 29static internal XmlQualifiedName StreamBodyTypeName = new XmlQualifiedName(StreamBodySchemaTypeName, StreamBodySchemaTypeNamespace);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageContractImporter.cs (4)
28private static readonly XmlQualifiedName s_anyType = new XmlQualifiedName("anyType", XmlSchema.Namespace); 1083if (message.Message.Equals(new XmlQualifiedName(part.Message.Name, description.TargetNamespace))) 1100if (operation != null && !new XmlQualifiedName(operation.PortType.Name, targetNamespace).Equals(binding.Type)) 1455return new XmlQualifiedName(part.Name, String.Empty);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageHeaderDescriptionCollection.cs (1)
18return new XmlQualifiedName(item.Name, item.Namespace);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessagePartDescriptionCollection.cs (1)
19return new XmlQualifiedName(item.Name, item.Namespace);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\SchemaHelper.cs (2)
24XmlSchemaElement existingElement = (XmlSchemaElement)schema.Elements[new XmlQualifiedName(element.Name, schema.TargetNamespace)]; 60XmlSchemaType existingType = (XmlSchemaType)schema.SchemaTypes[new XmlQualifiedName(type.Name, schema.TargetNamespace)];
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceReflector.cs (2)
91return new XmlQualifiedName(xmlName.EncodedName, ns); 105XmlQualifiedName contractQname = new XmlQualifiedName(contract.Name, contract.Namespace);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (3)
970XmlQualifiedName contractQname = new XmlQualifiedName(declaringContract.Name, declaringContract.Namespace); 1229if (partDescriptionCollection.Contains(new XmlQualifiedName(partDescription.Name, partDescription.Namespace))) 1550if (partDescriptionCollection.Contains(new XmlQualifiedName(partDescription.Name, partDescription.Namespace)))
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlExporter.cs (7)
105ExportEndpoint(endpoint, new XmlQualifiedName(NamingHelper.DefaultServiceName, NamingHelper.DefaultNamespace), null); 325wsdlPortTypeQName = new XmlQualifiedName(wsdlPortType.Name, wsdlPortType.ServiceDescription.TargetNamespace); 335wsdlBindingQName = new XmlQualifiedName(bindingConversionContext.WsdlBinding.Name, bindingConversionContext.WsdlBinding.ServiceDescription.TargetNamespace); 1038return new XmlQualifiedName(contract.Name, contract.Namespace); 1052return new XmlQualifiedName(uniquifiedLocalName, bindingWsdlNamespace); 1059XmlQualifiedName wsdlBindingQName = new XmlQualifiedName(localName, bindingWsdlNamespace); 1202string contractIdentifier = new XmlQualifiedName(contract.Name, contract.Namespace).ToString();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlImporter.cs (9)
304XmlQualifiedName wsdlPortTypeQName = new XmlQualifiedName(wsdlPortType.Name, wsdlPortType.ServiceDescription.TargetNamespace); 364XmlQualifiedName wsdlBindingQName = new XmlQualifiedName(wsdlBinding.Name, wsdlBinding.ServiceDescription.TargetNamespace); 812return new XmlQualifiedName(element.LocalName, element.NamespaceURI); 822return new XmlQualifiedName(xmlAttrib.ElementName, xmlAttrib.Namespace); 1181return new XmlQualifiedName(xmlName.EncodedName, wsdlBinding.ServiceDescription.TargetNamespace); 1188return new XmlQualifiedName(xmlName.EncodedName, wsdlPort.Service.ServiceDescription.TargetNamespace); 1317XmlQualifiedName wsdlBindingQName = new XmlQualifiedName(wsdlBinding.Name, wsdlBinding.ServiceDescription.TargetNamespace); 1335wsdlBindingQName = new XmlQualifiedName(policy.Attributes[bindingAttrName].Value, policy.Attributes[bindingAttrNamespace].Value); 1629XmlQualifiedName bindingQName = new XmlQualifiedName(endpointContext.WsdlBinding.Name, endpointContext.WsdlBinding.ServiceDescription.TargetNamespace);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (1)
528elementName = new XmlQualifiedName(faultElementName.DecodedName, faultNamespace);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\ChannelProtectionRequirements.cs (1)
334XmlQualifiedName headerName = new XmlQualifiedName(header.Name, header.Namespace);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityPolicy.cs (2)
341parts.HeaderTypes.Add(new XmlQualifiedName(name, ns)); 1033new MessagePartSpecification(new XmlQualifiedName(AddressingStrings.To, addressingVersion.Namespace))));
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\XmlHelper.cs (1)
121return new XmlQualifiedName(name, ns);
ImportModule.cs (1)
393XmlQualifiedName wsdlBindingQName = new XmlQualifiedName(context.WsdlBinding.Name, context.WsdlBinding.ServiceDescription.TargetNamespace);
1592 references to XmlQualifiedName
dotnet-svcutil-lib (1592)
FrameworkFork\Microsoft.Xml\Xml\BinaryXml\XmlBinaryReader.cs (1)
3298map[(int)BinXmlToken.XSD_QNAME] = typeof(XmlQualifiedName);
FrameworkFork\Microsoft.Xml\Xml\Cache\XPathDocumentBuilder.cs (2)
57private XmlQualifiedName _idAttrName; // Cached name of an ID attribute 168_idAttrName = (XmlQualifiedName)_elemIdMap[new XmlQualifiedName(localName, prefix)];
FrameworkFork\Microsoft.Xml\Xml\Core\IDtdInfo.cs (1)
28XmlQualifiedName Name { get; }
FrameworkFork\Microsoft.Xml\Xml\Core\QueryOutputWriter.cs (4)
27private Dictionary<XmlQualifiedName, int> _lookupCDataElems; 29private XmlQualifiedName _qnameCData; 58_lookupCDataElems = new Dictionary<XmlQualifiedName, int>(); 62foreach (XmlQualifiedName name in settings.CDataSectionElements)
FrameworkFork\Microsoft.Xml\Xml\Core\QueryOutputWriterV1.cs (6)
31private Dictionary<XmlQualifiedName, XmlQualifiedName> _lookupCDataElems; 33private XmlQualifiedName _qnameCData; 79_lookupCDataElems = new Dictionary<XmlQualifiedName, XmlQualifiedName>(); 83foreach (XmlQualifiedName name in settings.CDataSectionElements)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWriterSettings.cs (4)
69private List<XmlQualifiedName> _cdataSections = new List<XmlQualifiedName>(); 316clonedSettings._cdataSections = new List<XmlQualifiedName>(_cdataSections); 326internal List<XmlQualifiedName> CDataSectionElements
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentSchemaValidator.cs (2)
438XmlQualifiedName attrQName; 586XmlQualifiedName attName = new XmlQualifiedName(attributeToValidate.LocalName, attributeToValidate.NamespaceURI);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (1)
633XmlQualifiedName qname = new XmlQualifiedName(elem.LocalName, schInfo.SchemaType == SchemaType.DTD ? elem.Prefix : elem.NamespaceURI);
FrameworkFork\Microsoft.Xml\Xml\schema\BaseProcessor.cs (1)
69protected void AddToTable(XmlSchemaObjectTable table, XmlQualifiedName qname, XmlSchemaObject item)
FrameworkFork\Microsoft.Xml\Xml\schema\basevalidator.cs (1)
27protected XmlQualifiedName elementName;
FrameworkFork\Microsoft.Xml\Xml\schema\CompiledIdentityConstraint.cs (4)
19internal XmlQualifiedName name = XmlQualifiedName.Empty; 23internal XmlQualifiedName refer = XmlQualifiedName.Empty;
FrameworkFork\Microsoft.Xml\Xml\schema\ContentValidator.cs (16)
81public int AddName(XmlQualifiedName name, object particle) 149foreach (XmlQualifiedName name in _names.Keys) 151if (name != XmlQualifiedName.Empty && list.Allows(name)) 176public int this[XmlQualifiedName name] 200public bool Exists(XmlQualifiedName name) 227return ((XmlQualifiedName)de.Key).ToString(); 1062public virtual object ValidateElement(XmlQualifiedName name, ValidationState context, out int errorCode) 1145public override object ValidateElement(XmlQualifiedName name, ValidationState context, out int errorCode) 1199public bool Exists(XmlQualifiedName name) 1208public void AddName(XmlQualifiedName name, object particle) 1344LeafNode endMarker = new LeafNode(_positions.Add(_symbols.AddName(XmlQualifiedName.Empty, null), null)); 1687public override object ValidateElement(XmlQualifiedName name, ValidationState context, out int errorCode) 1811public override object ValidateElement(XmlQualifiedName name, ValidationState context, out int errorCode) 1974public override object ValidateElement(XmlQualifiedName name, ValidationState context, out int errorCode) 2264public bool AddElement(XmlQualifiedName name, object particle, bool isEmptiable) 2293public override object ValidateElement(XmlQualifiedName name, ValidationState context, out int errorCode)
FrameworkFork\Microsoft.Xml\Xml\schema\DatatypeImplementation.cs (18)
121internal static XmlQualifiedName QnAnySimpleType = new XmlQualifiedName("anySimpleType", XmlReservedNs.NsXs); 122internal static XmlQualifiedName QnAnyType = new XmlQualifiedName("anyType", XmlReservedNs.NsXs); 175internal static XmlSchemaSimpleType StartBuiltinType(XmlQualifiedName qname, XmlSchemaDatatype dataType) 231XmlQualifiedName qname; 323internal static XmlSchemaSimpleType GetSimpleTypeFromXsdType(XmlQualifiedName qname) 2723private static readonly Type s_atomicValueType = typeof(XmlQualifiedName); 2724private static readonly Type s_listValueType = typeof(XmlQualifiedName[]); 2770XmlQualifiedName qname = null; 2774qname = XmlQualifiedName.Parse(s, nsmgr, out prefix); 3059private static readonly Type s_atomicValueType = typeof(XmlQualifiedName); 3060private static readonly Type s_listValueType = typeof(XmlQualifiedName[]); 3106XmlQualifiedName qname = null; 3110qname = XmlQualifiedName.Parse(s, nsmgr, out prefix); 3144XmlQualifiedName notation = (XmlQualifiedName)dt.Restriction.Enumeration[i]; 3806private static readonly Type s_atomicValueType = typeof(XmlQualifiedName); 3807private static readonly Type s_listValueType = typeof(XmlQualifiedName[]); 3824return XmlQualifiedName.Parse(s.Trim(), nsmgr, out prefix);
FrameworkFork\Microsoft.Xml\Xml\schema\DtdParser.cs (12)
664XmlQualifiedName elementName = GetNameQualified(true); 681XmlQualifiedName attrName = GetNameQualified(true); 950XmlQualifiedName name = GetNameQualified(true); 1196XmlQualifiedName name = GetNameQualified(true); 1236XmlQualifiedName entityName = GetNameQualified(false); 1328XmlQualifiedName notationName = GetNameQualified(false); 2602XmlQualifiedName entityName = ScanEntityName(); 2651private XmlQualifiedName ScanEntityName() 2666XmlQualifiedName entityName = GetNameQualified(false); 3224private XmlQualifiedName GetNameQualified(bool canHavePrefix) 3326private bool HandleEntityReference(XmlQualifiedName entityName, bool paramEntity, bool inLiteral, bool inAttribute) 3416private SchemaEntity VerifyEntityReference(XmlQualifiedName entityName, bool paramEntity, bool mustBeDeclared, bool inAttribute)
FrameworkFork\Microsoft.Xml\Xml\schema\dtdvalidator.cs (6)
30private XmlQualifiedName _name = XmlQualifiedName.Empty; 46_name = XmlQualifiedName.Empty; 430private bool GenEntity(XmlQualifiedName qname) 464private SchemaEntity GetEntity(XmlQualifiedName qname, bool fParameterEntity) 501private void Push(XmlQualifiedName elementName)
FrameworkFork\Microsoft.Xml\Xml\schema\FacetChecker.cs (9)
834internal virtual Exception CheckValueFacets(XmlQualifiedName value, XmlSchemaDatatype datatype) 1512XmlQualifiedName qualifiedNameValue = (XmlQualifiedName)datatype.ValueConverter.ChangeType(value, typeof(XmlQualifiedName)); 1516internal override Exception CheckValueFacets(XmlQualifiedName value, XmlSchemaDatatype datatype) 1557return MatchEnumeration((XmlQualifiedName)datatype.ValueConverter.ChangeType(value, typeof(XmlQualifiedName)), enumeration); 1560private bool MatchEnumeration(XmlQualifiedName value, ArrayList enumeration) 1564if (value.Equals((XmlQualifiedName)enumeration[i]))
FrameworkFork\Microsoft.Xml\Xml\schema\GenerateConverter.cs (1)
995if (name == "XmlQualifiedName") return typeof(XmlQualifiedName);
FrameworkFork\Microsoft.Xml\Xml\schema\Inference\infer.cs (27)
27internal static XmlQualifiedName ST_boolean = new XmlQualifiedName("boolean", XmlSchema.Namespace); 28internal static XmlQualifiedName ST_byte = new XmlQualifiedName("byte", XmlSchema.Namespace); 29internal static XmlQualifiedName ST_unsignedByte = new XmlQualifiedName("unsignedByte", XmlSchema.Namespace); 30internal static XmlQualifiedName ST_short = new XmlQualifiedName("short", XmlSchema.Namespace); 31internal static XmlQualifiedName ST_unsignedShort = new XmlQualifiedName("unsignedShort", XmlSchema.Namespace); 32internal static XmlQualifiedName ST_int = new XmlQualifiedName("int", XmlSchema.Namespace); 33internal static XmlQualifiedName ST_unsignedInt = new XmlQualifiedName("unsignedInt", XmlSchema.Namespace); 34internal static XmlQualifiedName ST_long = new XmlQualifiedName("long", XmlSchema.Namespace); 35internal static XmlQualifiedName ST_unsignedLong = new XmlQualifiedName("unsignedLong", XmlSchema.Namespace); 36internal static XmlQualifiedName ST_integer = new XmlQualifiedName("integer", XmlSchema.Namespace); 37internal static XmlQualifiedName ST_decimal = new XmlQualifiedName("decimal", XmlSchema.Namespace); 38internal static XmlQualifiedName ST_float = new XmlQualifiedName("float", XmlSchema.Namespace); 39internal static XmlQualifiedName ST_double = new XmlQualifiedName("double", XmlSchema.Namespace); 40internal static XmlQualifiedName ST_duration = new XmlQualifiedName("duration", XmlSchema.Namespace); 41internal static XmlQualifiedName ST_dateTime = new XmlQualifiedName("dateTime", XmlSchema.Namespace); 42internal static XmlQualifiedName ST_time = new XmlQualifiedName("time", XmlSchema.Namespace); 43internal static XmlQualifiedName ST_date = new XmlQualifiedName("date", XmlSchema.Namespace); 44internal static XmlQualifiedName ST_gYearMonth = new XmlQualifiedName("gYearMonth", XmlSchema.Namespace); 45internal static XmlQualifiedName ST_string = new XmlQualifiedName("string", XmlSchema.Namespace); 46internal static XmlQualifiedName ST_anySimpleType = new XmlQualifiedName("anySimpleType", XmlSchema.Namespace); 48internal static XmlQualifiedName[] SimpleTypes = 909XmlQualifiedName qname = new XmlQualifiedName(_xtr.LocalName, _xtr.NamespaceURI); 926xse.SchemaTypeName = XmlQualifiedName.Empty; 1027else if (elem.SchemaTypeName != XmlQualifiedName.Empty) 1273xse.SchemaTypeName = XmlQualifiedName.Empty; //re-set the name 1465internal XmlQualifiedName RefineSimpleType(string s, ref int iTypeFlags) 2439private static int GetSchemaType(XmlQualifiedName qname)
FrameworkFork\Microsoft.Xml\Xml\schema\NamespaceList.cs (1)
121public bool Allows(XmlQualifiedName qname)
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (6)
1068private int CountGroupSelfReference(XmlSchemaObjectCollection items, XmlQualifiedName name, XmlSchemaGroup redefined) 1147XmlQualifiedName baseName; 1647XmlQualifiedName[] qNames = union1.MemberTypes; 1744if (complexType.QualifiedName == XmlQualifiedName.Empty) 1799if (complexType.QualifiedName == XmlQualifiedName.Empty) 2128private void ValidateQNameAttribute(XmlSchemaObject xso, string attributeName, XmlQualifiedName value)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaAttDef.cs (2)
47public SchemaAttDef(XmlQualifiedName name, String prefix) 52public SchemaAttDef(XmlQualifiedName name) : base(name, null)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (6)
252if (element.ElementSchemaType is XmlSchemaComplexType && element.SchemaTypeName == XmlQualifiedName.Empty) 628XmlQualifiedName[] mainMemberTypes = mainUnion.MemberTypes; 779if (!decl.AttDefs.ContainsKey(attribute.QualifiedName) && attribute.AttDef != null && attribute.AttDef.Name != XmlQualifiedName.Empty && attribute.AttDef != SchemaAttDef.Empty) 2711private XmlSchemaSimpleType GetSimpleType(XmlQualifiedName name) 2737private XmlSchemaComplexType GetComplexType(XmlQualifiedName name) 2747private XmlSchemaType GetAnySchemaType(XmlQualifiedName name)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (8)
708redefine.Schema.Groups.Insert((XmlQualifiedName)entry.Key, (XmlSchemaObject)entry.Value); 712redefine.Schema.AttributeGroups.Insert((XmlQualifiedName)entry.Key, (XmlSchemaObject)entry.Value); 716redefine.Schema.SchemaTypes.Insert((XmlQualifiedName)entry.Key, (XmlSchemaObject)entry.Value); 720private int CountGroupSelfReference(XmlSchemaObjectCollection items, XmlQualifiedName name) 796XmlQualifiedName baseName; 1387if (complexType.QualifiedName == XmlQualifiedName.Empty) 1442if (complexType.QualifiedName == XmlQualifiedName.Empty) 1769private void ValidateQNameAttribute(XmlSchemaObject xso, string attributeName, XmlQualifiedName value)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaDeclBase.cs (4)
25protected XmlQualifiedName name = XmlQualifiedName.Empty; 41protected SchemaDeclBase(XmlQualifiedName name, string prefix) 53internal XmlQualifiedName Name
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaElementDecl.cs (12)
14private Dictionary<XmlQualifiedName, SchemaAttDef> _attdefs = new Dictionary<XmlQualifiedName, SchemaAttDef>(); 23private Dictionary<XmlQualifiedName, XmlQualifiedName> _prohibitedAttributes = new Dictionary<XmlQualifiedName, XmlQualifiedName>(); 45internal SchemaElementDecl(XmlQualifiedName name, String prefix) 82XmlQualifiedName qname = new XmlQualifiedName(localName, prefix); 210internal SchemaAttDef GetAttDef(XmlQualifiedName qname) 225internal Dictionary<XmlQualifiedName, SchemaAttDef> AttDefs 230internal Dictionary<XmlQualifiedName, XmlQualifiedName> ProhibitedAttributes
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaEntity.cs (6)
12private XmlQualifiedName _qname; // Name of entity 16private XmlQualifiedName _ndata = XmlQualifiedName.Empty; // NDATA identifier 29internal SchemaEntity(XmlQualifiedName qname, bool isParameter) 114internal XmlQualifiedName Name 143internal XmlQualifiedName NData
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaInfo.cs (35)
32private Dictionary<XmlQualifiedName, SchemaElementDecl> _elementDecls = new Dictionary<XmlQualifiedName, SchemaElementDecl>(); 33private Dictionary<XmlQualifiedName, SchemaElementDecl> _undeclaredElementDecls = new Dictionary<XmlQualifiedName, SchemaElementDecl>(); 35private Dictionary<XmlQualifiedName, SchemaEntity> _generalEntities; 36private Dictionary<XmlQualifiedName, SchemaEntity> _parameterEntities; 38private XmlQualifiedName _docTypeName = XmlQualifiedName.Empty; 44private Dictionary<XmlQualifiedName, SchemaAttDef> _attributeDecls = new Dictionary<XmlQualifiedName, SchemaAttDef>(); 47private Dictionary<XmlQualifiedName, SchemaElementDecl> _elementDeclsByType = new Dictionary<XmlQualifiedName, SchemaElementDecl>(); 56public XmlQualifiedName DocTypeName 68internal Dictionary<XmlQualifiedName, SchemaElementDecl> ElementDecls 73internal Dictionary<XmlQualifiedName, SchemaElementDecl> UndeclaredElementDecls 78internal Dictionary<XmlQualifiedName, SchemaEntity> GeneralEntities 84_generalEntities = new Dictionary<XmlQualifiedName, SchemaEntity>(); 90internal Dictionary<XmlQualifiedName, SchemaEntity> ParameterEntities 96_parameterEntities = new Dictionary<XmlQualifiedName, SchemaEntity>(); 113internal Dictionary<XmlQualifiedName, SchemaElementDecl> ElementDeclsByType 118internal Dictionary<XmlQualifiedName, SchemaAttDef> AttributeDecls 141internal SchemaElementDecl GetElementDecl(XmlQualifiedName qname) 151internal SchemaElementDecl GetTypeDecl(XmlQualifiedName qname) 162internal XmlSchemaElement GetElement(XmlQualifiedName qname) 172internal XmlSchemaAttribute GetAttribute(XmlQualifiedName qname) 182internal XmlSchemaElement GetType(XmlQualifiedName qname) 202internal SchemaAttDef GetAttributeXdr(SchemaElementDecl ed, XmlQualifiedName qname) 224internal SchemaAttDef GetAttributeXsd(SchemaElementDecl ed, XmlQualifiedName qname, XmlSchemaObject partialValidationType, out AttributeMatchState attributeMatchState) 305internal SchemaAttDef GetAttributeXsd(SchemaElementDecl ed, XmlQualifiedName qname, ref bool skip) 359foreach (KeyValuePair<XmlQualifiedName, SchemaElementDecl> entry in sinfo._elementDecls) 366foreach (KeyValuePair<XmlQualifiedName, SchemaElementDecl> entry in sinfo._elementDeclsByType) 391Dictionary<XmlQualifiedName, SchemaElementDecl> elements = _elementDecls; 430XmlQualifiedName qname = new XmlQualifiedName(prefix, localName); 454XmlQualifiedName qname = new XmlQualifiedName(name); 463XmlQualifiedName IDtdInfo.Name
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaNames.cs (128)
39public XmlQualifiedName QnPCData; 40public XmlQualifiedName QnXml; 41public XmlQualifiedName QnXmlNs; 42public XmlQualifiedName QnDtDt; 43public XmlQualifiedName QnXmlLang; 45public XmlQualifiedName QnName; 46public XmlQualifiedName QnType; 47public XmlQualifiedName QnMaxOccurs; 48public XmlQualifiedName QnMinOccurs; 49public XmlQualifiedName QnInfinite; 50public XmlQualifiedName QnModel; 51public XmlQualifiedName QnOpen; 52public XmlQualifiedName QnClosed; 53public XmlQualifiedName QnContent; 54public XmlQualifiedName QnMixed; 55public XmlQualifiedName QnEmpty; 56public XmlQualifiedName QnEltOnly; 57public XmlQualifiedName QnTextOnly; 58public XmlQualifiedName QnOrder; 59public XmlQualifiedName QnSeq; 60public XmlQualifiedName QnOne; 61public XmlQualifiedName QnMany; 62public XmlQualifiedName QnRequired; 63public XmlQualifiedName QnYes; 64public XmlQualifiedName QnNo; 65public XmlQualifiedName QnString; 66public XmlQualifiedName QnID; 67public XmlQualifiedName QnIDRef; 68public XmlQualifiedName QnIDRefs; 69public XmlQualifiedName QnEntity; 70public XmlQualifiedName QnEntities; 71public XmlQualifiedName QnNmToken; 72public XmlQualifiedName QnNmTokens; 73public XmlQualifiedName QnEnumeration; 74public XmlQualifiedName QnDefault; 75public XmlQualifiedName QnXdrSchema; 76public XmlQualifiedName QnXdrElementType; 77public XmlQualifiedName QnXdrElement; 78public XmlQualifiedName QnXdrGroup; 79public XmlQualifiedName QnXdrAttributeType; 80public XmlQualifiedName QnXdrAttribute; 81public XmlQualifiedName QnXdrDataType; 82public XmlQualifiedName QnXdrDescription; 83public XmlQualifiedName QnXdrExtends; 84public XmlQualifiedName QnXdrAliasSchema; 85public XmlQualifiedName QnDtType; 86public XmlQualifiedName QnDtValues; 87public XmlQualifiedName QnDtMaxLength; 88public XmlQualifiedName QnDtMinLength; 89public XmlQualifiedName QnDtMax; 90public XmlQualifiedName QnDtMin; 91public XmlQualifiedName QnDtMinExclusive; 92public XmlQualifiedName QnDtMaxExclusive; 94public XmlQualifiedName QnTargetNamespace; 95public XmlQualifiedName QnVersion; 96public XmlQualifiedName QnFinalDefault; 97public XmlQualifiedName QnBlockDefault; 98public XmlQualifiedName QnFixed; 99public XmlQualifiedName QnAbstract; 100public XmlQualifiedName QnBlock; 101public XmlQualifiedName QnSubstitutionGroup; 102public XmlQualifiedName QnFinal; 103public XmlQualifiedName QnNillable; 104public XmlQualifiedName QnRef; 105public XmlQualifiedName QnBase; 106public XmlQualifiedName QnDerivedBy; 107public XmlQualifiedName QnNamespace; 108public XmlQualifiedName QnProcessContents; 109public XmlQualifiedName QnRefer; 110public XmlQualifiedName QnPublic; 111public XmlQualifiedName QnSystem; 112public XmlQualifiedName QnSchemaLocation; 113public XmlQualifiedName QnValue; 114public XmlQualifiedName QnUse; 115public XmlQualifiedName QnForm; 116public XmlQualifiedName QnElementFormDefault; 117public XmlQualifiedName QnAttributeFormDefault; 118public XmlQualifiedName QnItemType; 119public XmlQualifiedName QnMemberTypes; 120public XmlQualifiedName QnXPath; 121public XmlQualifiedName QnXsdSchema; 122public XmlQualifiedName QnXsdAnnotation; 123public XmlQualifiedName QnXsdInclude; 124public XmlQualifiedName QnXsdImport; 125public XmlQualifiedName QnXsdElement; 126public XmlQualifiedName QnXsdAttribute; 127public XmlQualifiedName QnXsdAttributeGroup; 128public XmlQualifiedName QnXsdAnyAttribute; 129public XmlQualifiedName QnXsdGroup; 130public XmlQualifiedName QnXsdAll; 131public XmlQualifiedName QnXsdChoice; 132public XmlQualifiedName QnXsdSequence; 133public XmlQualifiedName QnXsdAny; 134public XmlQualifiedName QnXsdNotation; 135public XmlQualifiedName QnXsdSimpleType; 136public XmlQualifiedName QnXsdComplexType; 137public XmlQualifiedName QnXsdUnique; 138public XmlQualifiedName QnXsdKey; 139public XmlQualifiedName QnXsdKeyRef; 140public XmlQualifiedName QnXsdSelector; 141public XmlQualifiedName QnXsdField; 142public XmlQualifiedName QnXsdMinExclusive; 143public XmlQualifiedName QnXsdMinInclusive; 144public XmlQualifiedName QnXsdMaxInclusive; 145public XmlQualifiedName QnXsdMaxExclusive; 146public XmlQualifiedName QnXsdTotalDigits; 147public XmlQualifiedName QnXsdFractionDigits; 148public XmlQualifiedName QnXsdLength; 149public XmlQualifiedName QnXsdMinLength; 150public XmlQualifiedName QnXsdMaxLength; 151public XmlQualifiedName QnXsdEnumeration; 152public XmlQualifiedName QnXsdPattern; 153public XmlQualifiedName QnXsdDocumentation; 154public XmlQualifiedName QnXsdAppinfo; 155public XmlQualifiedName QnSource; 156public XmlQualifiedName QnXsdComplexContent; 157public XmlQualifiedName QnXsdSimpleContent; 158public XmlQualifiedName QnXsdRestriction; 159public XmlQualifiedName QnXsdExtension; 160public XmlQualifiedName QnXsdUnion; 161public XmlQualifiedName QnXsdList; 162public XmlQualifiedName QnXsdWhiteSpace; 163public XmlQualifiedName QnXsdRedefine; 164public XmlQualifiedName QnXsdAnyType; 166internal XmlQualifiedName[] TokenToQName = new XmlQualifiedName[(int)Token.XmlLang + 1]; 453TokenToQName[(int)Token.Empty] = XmlQualifiedName.Empty; 482public XmlQualifiedName GetName(SchemaNames.Token token)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaNotation.cs (3)
15private XmlQualifiedName _name; 19internal SchemaNotation(XmlQualifiedName name) 24internal XmlQualifiedName Name
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (8)
252if (localComplexType != null && element.SchemaTypeName == XmlQualifiedName.Empty) 713XmlQualifiedName[] mainMemberTypes = mainUnion.MemberTypes; 851if (!decl.AttDefs.ContainsKey(attribute.QualifiedName) && attribute.AttDef != null && attribute.AttDef.Name != XmlQualifiedName.Empty && attribute.AttDef != SchemaAttDef.Empty) 1148if (localComplexType != null && localElement.SchemaTypeName == XmlQualifiedName.Empty && localElement.RefName == XmlQualifiedName.Empty) 3179private XmlSchemaSimpleType GetSimpleType(XmlQualifiedName name) 3193private XmlSchemaComplexType GetComplexType(XmlQualifiedName name) 3203private XmlSchemaType GetAnySchemaType(XmlQualifiedName name)
FrameworkFork\Microsoft.Xml\Xml\schema\XdrBuilder.cs (43)
55internal XmlQualifiedName _Name; 57internal XmlQualifiedName _TypeName; 77_Name = XmlQualifiedName.Empty; 79_TypeName = XmlQualifiedName.Empty; 149internal XmlQualifiedName _Name; 427XmlQualifiedName qname = new XmlQualifiedName(name, XmlSchemaDatatype.XdrCanonizeUri(ns, _NameTable, _SchemaNames)); 441SendValidationEvent(ResXml.Sch_UnsupportedElement, XmlQualifiedName.ToString(name, prefix)); 453XmlQualifiedName qname = new XmlQualifiedName(name, XmlSchemaDatatype.XdrCanonizeUri(ns, _NameTable, _SchemaNames)); 463XmlQualifiedName qnameValue = XmlQualifiedName.Parse(value, _CurNsMgr, out prefixValue); 500XmlQualifiedName.ToString(qname.Name, prefix)); 682XmlQualifiedName gname = builder._UndefinedAttributeTypes._TypeName; 707builder.SendValidationEvent(ResXml.Sch_UndeclaredElement, XmlQualifiedName.ToString(ed.Name.Name, ed.Prefix)); 739XmlQualifiedName qname = (XmlQualifiedName)obj; 743builder.SendValidationEvent(ResXml.Sch_DupElementDecl, XmlQualifiedName.ToString(qname.Name, prefix)); 756builder._ElementDef._ContentAttr = builder.GetContent((XmlQualifiedName)obj); 761builder._contentValidator.IsOpen = builder.GetModel((XmlQualifiedName)obj); 766builder._ElementDef._OrderAttr = builder._GroupDef._Order = builder.GetOrder((XmlQualifiedName)obj); 924XmlQualifiedName pName = patt._TypeName; 1018ad._AttDef = new SchemaAttDef(XmlQualifiedName.Empty, null); 1038XmlQualifiedName qname = (XmlQualifiedName)obj; 1052builder.SendValidationEvent(ResXml.Sch_DupAttribute, XmlQualifiedName.ToString(qname.Name, prefix)); 1066builder.SendValidationEvent(ResXml.Sch_DupAttribute, XmlQualifiedName.ToString(qname.Name, prefix)); 1083XmlQualifiedName qname = (XmlQualifiedName)obj; 1191XmlQualifiedName qname = (XmlQualifiedName)obj; 1257builder._BaseDecl._TypeName = (XmlQualifiedName)obj; 1282XmlQualifiedName qname = builder._BaseDecl._TypeName; 1297XmlQualifiedName gname = qname; 1308builder.SendValidationEvent(ResXml.Sch_UndeclaredAttribute, XmlQualifiedName.ToString(qname.Name, prefix)); 1372builder._GroupDef._Order = builder.GetOrder((XmlQualifiedName)obj); 1498private bool GetNextState(XmlQualifiedName qname) 1515private bool IsSkipableElement(XmlQualifiedName qname) 1529private bool IsSkipableAttribute(XmlQualifiedName qname) 1554private int GetOrder(XmlQualifiedName qname) 1597XmlQualifiedName qname = (XmlQualifiedName)obj; 1730private int GetContent(XmlQualifiedName qname) 1759private bool GetModel(XmlQualifiedName qname) 1785XmlQualifiedName.ToString(_ElementDef._ElementDecl.Name.Name, _ElementDef._ElementDecl.Prefix));
FrameworkFork\Microsoft.Xml\Xml\schema\xdrvalidator.cs (6)
24private XmlQualifiedName _name = XmlQualifiedName.Empty; 52_name = XmlQualifiedName.Empty; 54Push(XmlQualifiedName.Empty); 654private void Push(XmlQualifiedName elementName) 695private XmlQualifiedName QualifiedName(string name, string ns)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlAtomicValue.cs (2)
158XmlQualifiedName qname = _objVal as XmlQualifiedName;
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaAny.cs (1)
128internal bool Allows(XmlQualifiedName qname)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaAnyAttribute.cs (1)
84internal bool Allows(XmlQualifiedName qname)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaAttribute.cs (12)
28private XmlQualifiedName _refName = XmlQualifiedName.Empty; 29private XmlQualifiedName _typeName = XmlQualifiedName.Empty; 30private XmlQualifiedName _qualifiedName = XmlQualifiedName.Empty; 88public XmlQualifiedName RefName 91set { _refName = (value == null ? XmlQualifiedName.Empty : value); } 99public XmlQualifiedName SchemaTypeName 102set { _typeName = (value == null ? XmlQualifiedName.Empty : value); } 132public XmlQualifiedName QualifiedName 194internal void SetQualifiedName(XmlQualifiedName value)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaAttributeGroup.cs (4)
23private XmlQualifiedName _qname = XmlQualifiedName.Empty; 63public XmlQualifiedName QualifiedName 116internal void SetQualifiedName(XmlQualifiedName value)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaAttributeGroupRef.cs (4)
20private XmlQualifiedName _refName = XmlQualifiedName.Empty; 27public XmlQualifiedName RefName 30set { _refName = (value == null ? XmlQualifiedName.Empty : value); }
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexContentExtension.cs (4)
23private XmlQualifiedName _baseTypeName = XmlQualifiedName.Empty; 30public XmlQualifiedName BaseTypeName 33set { _baseTypeName = (value == null ? XmlQualifiedName.Empty : value); }
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexContentRestriction.cs (4)
23private XmlQualifiedName _baseTypeName = XmlQualifiedName.Empty; 30public XmlQualifiedName BaseTypeName 33set { _baseTypeName = (value == null ? XmlQualifiedName.Empty : value); }
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaComplexType.cs (3)
358internal override XmlQualifiedName DerivedFrom 365return XmlQualifiedName.Empty; 376return XmlQualifiedName.Empty;
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaElement.cs (16)
35private XmlQualifiedName _refName = XmlQualifiedName.Empty; 36private XmlQualifiedName _substitutionGroup = XmlQualifiedName.Empty; 37private XmlQualifiedName _typeName = XmlQualifiedName.Empty; 40private XmlQualifiedName _qualifiedName = XmlQualifiedName.Empty; 158public XmlQualifiedName RefName 161set { _refName = (value == null ? XmlQualifiedName.Empty : value); } 169public XmlQualifiedName SubstitutionGroup 172set { _substitutionGroup = (value == null ? XmlQualifiedName.Empty : value); } 180public XmlQualifiedName SchemaTypeName 183set { _typeName = (value == null ? XmlQualifiedName.Empty : value); } 222public XmlQualifiedName QualifiedName 291internal void SetQualifiedName(XmlQualifiedName value)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaGroup.cs (4)
22private XmlQualifiedName _qname = XmlQualifiedName.Empty; 51public XmlQualifiedName QualifiedName 84internal void SetQualifiedName(XmlQualifiedName value)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaGroupRef.cs (4)
19private XmlQualifiedName _refName = XmlQualifiedName.Empty; 28public XmlQualifiedName RefName 31set { _refName = (value == null ? XmlQualifiedName.Empty : value); }
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaIdentityConstraint.cs (8)
24private XmlQualifiedName _qualifiedName = XmlQualifiedName.Empty; 64public XmlQualifiedName QualifiedName 69internal void SetQualifiedName(XmlQualifiedName value) 130private XmlQualifiedName _refer = XmlQualifiedName.Empty; 137public XmlQualifiedName Refer 140set { _refer = (value == null ? XmlQualifiedName.Empty : value); }
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaNotation.cs (3)
22private XmlQualifiedName _qname = XmlQualifiedName.Empty; 58internal XmlQualifiedName QualifiedName
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaObjectTable.cs (11)
18private Dictionary<XmlQualifiedName, XmlSchemaObject> _table = new Dictionary<XmlQualifiedName, XmlSchemaObject>(); 25internal void Add(XmlQualifiedName name, XmlSchemaObject value) 32internal void Insert(XmlQualifiedName name, XmlSchemaObject value) 51internal void Replace(XmlQualifiedName name, XmlSchemaObject value) 70internal void Remove(XmlQualifiedName name) 106public bool Contains(XmlQualifiedName name) 112public XmlSchemaObject this[XmlQualifiedName name] 158internal XmlQualifiedName qname; 161public XmlSchemaObjectEntry(XmlQualifiedName name, XmlSchemaObject value) 299protected XmlQualifiedName currentKey;
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaParticle.cs (2)
161internal XmlQualifiedName GetQualifiedName() 185return XmlQualifiedName.Empty; //If ever called on other particles
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaSet.cs (2)
1114XmlQualifiedName head = substGroup.Examplar; 1543private bool AddToTable(XmlSchemaObjectTable table, XmlQualifiedName qname, XmlSchemaObject item)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaSimpleContentExtension.cs (4)
21private XmlQualifiedName _baseTypeName = XmlQualifiedName.Empty; 28public XmlQualifiedName BaseTypeName 31set { _baseTypeName = (value == null ? XmlQualifiedName.Empty : value); }
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaSimpleContentRestriction.cs (4)
19private XmlQualifiedName _baseTypeName = XmlQualifiedName.Empty; 30public XmlQualifiedName BaseTypeName 33set { _baseTypeName = (value == null ? XmlQualifiedName.Empty : value); }
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaSimpleType.cs (3)
42internal override XmlQualifiedName DerivedFrom 49return XmlQualifiedName.Empty; 55return XmlQualifiedName.Empty;
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaSimpleTypeList.cs (4)
19private XmlQualifiedName _itemTypeName = XmlQualifiedName.Empty; 28public XmlQualifiedName ItemTypeName 31set { _itemTypeName = (value == null ? XmlQualifiedName.Empty : value); }
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaSimpleTypeRestriction.cs (4)
20private XmlQualifiedName _baseTypeName = XmlQualifiedName.Empty; 29public XmlQualifiedName BaseTypeName 32set { _baseTypeName = (value == null ? XmlQualifiedName.Empty : value); }
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaSimpleTypeUnion.cs (4)
20private XmlQualifiedName[] _memberTypes; 35public XmlQualifiedName[] MemberTypes 59XmlQualifiedName[] newQNames = new XmlQualifiedName[_memberTypes.Length];
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaSubstitutionGroup.cs (3)
17private XmlQualifiedName _examplar = XmlQualifiedName.Empty; 26internal XmlQualifiedName Examplar
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaType.cs (8)
29private volatile XmlQualifiedName _qname = XmlQualifiedName.Empty; 39public static XmlSchemaSimpleType GetBuiltInSimpleType(XmlQualifiedName qualifiedName) 74public static XmlSchemaComplexType GetBuiltInComplexType(XmlQualifiedName qualifiedName) 118public XmlQualifiedName QualifiedName 246internal void SetQualifiedName(XmlQualifiedName value) 284internal virtual XmlQualifiedName DerivedFrom 286get { return XmlQualifiedName.Empty; }
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaValidator.cs (22)
101private XmlQualifiedName _contextQName; 212Push(XmlQualifiedName.Empty); 434XmlQualifiedName elementName = _contextQName; 554XmlQualifiedName attQName = new XmlQualifiedName(lName, ns); 1331private object ValidateElementContext(XmlQualifiedName elementName, out bool invalidElementInContext) 1335XmlQualifiedName head; 1414private XmlSchemaElement GetSubstitutionGroupHead(XmlQualifiedName member) 1419XmlQualifiedName head = memberElem.SubstitutionGroup; 1542private void Push(XmlQualifiedName elementName) 1607private SchemaElementDecl FastGetElementDecl(XmlQualifiedName elementName, object particle) 1660XmlQualifiedName xsiTypeName = XmlQualifiedName.Empty; 1671xsiTypeName = typedVal as XmlQualifiedName; 1798private SchemaAttDef CheckIsXmlAttribute(XmlQualifiedName attQName) 2131Dictionary<XmlQualifiedName, SchemaAttDef> attributeDefs = currentElementDecl.AttDefs; 2154xsiElement.SchemaTypeName = XmlQualifiedName.Empty; //Reset typeName on element as this might be different 2525internal static void ElementValidationError(XmlQualifiedName name, ValidationState context, ValidationEventHandler eventHandler, object sender, string sourceUri, int lineNo, int linePos, XmlSchemaSet schemaSet) 2627XmlQualifiedName currentQName; 2684XmlQualifiedName name = null; 2685name = expected[0] as XmlQualifiedName; 2711name = expected[i] as XmlQualifiedName; 2772internal static string BuildElementName(XmlQualifiedName qname)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlValueConverter.cs (10)
369protected static readonly Type XmlQualifiedNameType = typeof(XmlQualifiedName); 574protected static string QNameToString(XmlQualifiedName name) 706protected static XmlQualifiedName StringToQName(string value, IXmlNamespaceResolver nsResolver) 846protected static string QNameToString(XmlQualifiedName qname, IXmlNamespaceResolver nsResolver) 2083case XmlTypeCode.Notation: return QNameToString((XmlQualifiedName)value, nsResolver); 2084case XmlTypeCode.QName: return QNameToString((XmlQualifiedName)value, nsResolver); 2175case XmlTypeCode.Notation: return ((XmlQualifiedName)value); 2176case XmlTypeCode.QName: return ((XmlQualifiedName)value); 2658if (IsDerivedFrom(sourceType, XmlQualifiedNameType)) return QNameToString((XmlQualifiedName)value, nsResolver); 3533if (itemTypeDst == XmlQualifiedNameType) return ToArray<XmlQualifiedName>(value, nsResolver);
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (8)
708XmlQualifiedName qname = new XmlQualifiedName(name, ns); 731XmlQualifiedName qname = new XmlQualifiedName(name, ns); 1518builder._simpleTypeUnion.MemberTypes = (XmlQualifiedName[])dt.ParseValue(value, builder._nameTable, builder._namespaceManager); 2435private bool GetNextState(XmlQualifiedName qname) 2453private bool IsSkipableElement(XmlQualifiedName qname) 2508private XmlQualifiedName ParseQName(string value, string attributeName) 2514return XmlQualifiedName.Parse(value, _namespaceManager, out prefix); 2519return XmlQualifiedName.Empty;
FrameworkFork\Microsoft.Xml\Xml\schema\xsdvalidator.cs (8)
74Push(XmlQualifiedName.Empty); 217XmlQualifiedName xsiType; 260private void ProcessXsiAttributes(out XmlQualifiedName xsiType, out string xsiNil) 264xsiType = XmlQualifiedName.Empty; 305xsiType = (XmlQualifiedName)s_dtQName.ParseValue(reader.Value, NameTable, _nsManager); 385private SchemaElementDecl ThoroughGetElementDecl(SchemaElementDecl elementDecl, XmlQualifiedName xsiType, string xsiNil) 492XmlQualifiedName attQName = new XmlQualifiedName(reader.LocalName, reader.NamespaceURI); 793private void Push(XmlQualifiedName elementName)
FrameworkFork\Microsoft.Xml\Xml\Serialization\ImportContext.cs (5)
145internal XmlSchemaObject AddItem(XmlSchemaObject item, XmlQualifiedName qname, XmlSchemas schemas) 338XmlQualifiedName baseName = XmlQualifiedName.Empty; 417XmlQualifiedName[] memberTypes = ((XmlSchemaSimpleTypeUnion)item).MemberTypes; 532XmlQualifiedName qname = TypeScope.ParseWsdlArrayType(attribute.Value, out dims, item);
FrameworkFork\Microsoft.Xml\Xml\Serialization\Mappings.cs (7)
1114private XmlQualifiedName _xsiType; 1134internal SerializableMapping(XmlQualifiedName xsiType, XmlSchemaSet schemas) 1248internal XmlQualifiedName XsiType 1348_xsiType = XmlQualifiedName.Empty; 1358else if (typeof(XmlQualifiedName).IsAssignableFrom(_getSchemaMethod.ReturnType)) 1360_xsiType = (XmlQualifiedName)typeInfo; 1368throw new InvalidOperationException(string.Format(ResXml.XmlGetSchemaMethodReturnType, _type.Name, _getSchemaMethod.Name, typeof(XmlSchemaProviderAttribute).Name, typeof(XmlQualifiedName).FullName));
FrameworkFork\Microsoft.Xml\Xml\Serialization\NameTable.cs (2)
43internal void Add(XmlQualifiedName qname, object value) 54internal object this[XmlQualifiedName qname]
FrameworkFork\Microsoft.Xml\Xml\Serialization\PrimitiveXmlSerializers.cs (1)
209WriteNullableQualifiedNameLiteral(@"QName", @"", ((global::Microsoft.Xml.XmlQualifiedName)o));
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaImporter.cs (4)
205ImportDerivedTypes(XmlQualifiedName.Empty); 210internal abstract void ImportDerivedTypes(XmlQualifiedName baseName); 212internal void AddReference(XmlQualifiedName name, NameTable references, string error) 223internal void RemoveReference(XmlQualifiedName name, NameTable references)
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (10)
44XmlQualifiedName qn1 = (XmlQualifiedName)o1; 45XmlQualifiedName qn2 = (XmlQualifiedName)o2; 63internal static XmlQualifiedName NameOf(XmlSchemaObject o) 129internal static XmlQualifiedName NameOf(XmlSchemaObjectCollection items) 138return (XmlQualifiedName)list[0]; 175protected void WriteAttribute(string localName, string ns, XmlQualifiedName value) 608XmlQualifiedName q = (XmlQualifiedName)list[i];
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaExporter.cs (11)
24private static XmlQualifiedName s_arrayQName = new XmlQualifiedName(Soap.Array, Soap.Encoding); 25private static XmlQualifiedName s_arrayTypeQName = new XmlQualifiedName(Soap.ArrayType, Soap.Encoding); 173private XmlQualifiedName ExportTypeMapping(TypeMapping mapping, string ns) 201private XmlQualifiedName ExportNonXsdPrimitiveMapping(PrimitiveMapping mapping, string ns) 215private XmlQualifiedName ExportPrimitiveMapping(PrimitiveMapping mapping) 220private XmlQualifiedName ExportArrayMapping(ArrayMapping mapping, string ns) 245XmlQualifiedName qname = ExportTypeMapping(mapping.Elements[0].Mapping, mapping.Namespace); 307private XmlQualifiedName ExportRootMapping(StructMapping mapping) 317private XmlQualifiedName ExportStructMapping(StructMapping mapping, string ns) 349private XmlQualifiedName ExportMembersMapping(MembersMapping mapping, string ns) 406private XmlQualifiedName ExportEnumMapping(EnumMapping mapping, string ns)
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaImporter.cs (14)
57public XmlTypeMapping ImportDerivedTypeMapping(XmlQualifiedName name, Type baseType, bool baseTypeCanBeIndirect) 174XmlQualifiedName parentType = XmlSchemas.GetParentName(element); 196XmlQualifiedName parentType = XmlSchemas.GetParentName(element); 212XmlQualifiedName parentType = XmlSchemas.GetParentName(element); 217XmlQualifiedName parentType = XmlSchemas.GetParentName(element); 227internal override void ImportDerivedTypes(XmlQualifiedName baseName) 248private TypeMapping ImportType(XmlQualifiedName name, bool excludeFromImport) 300XmlQualifiedName parentType = XmlSchemas.GetParentName(element); 394XmlQualifiedName parentType = XmlSchemas.GetParentName(group); 403XmlQualifiedName parentType = XmlSchemas.GetParentName(particle); 499XmlQualifiedName typeName = TypeScope.ParseWsdlArrayType(arrayType, out dims, attribute); 708private XmlSchemaSimpleType FindDataType(XmlQualifiedName name) 724private object FindType(XmlQualifiedName name) 734XmlQualifiedName baseType = encType.DerivedFrom;
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaMember.cs (3)
14private XmlQualifiedName _type = XmlQualifiedName.Empty; 20public XmlQualifiedName MemberType
FrameworkFork\Microsoft.Xml\Xml\Serialization\Types.cs (7)
534AddPrimitive(typeof(XmlQualifiedName), "QName", "XmlQualifiedName", TypeFlags.CanBeAttributeValue | TypeFlags.HasCustomFormatter | TypeFlags.HasIsEmpty | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired | TypeFlags.Reference); 598if (type == typeof(XmlQualifiedName)) 630AddSoapEncodedPrimitive(typeof(XmlQualifiedName), "QName", ns, "XmlQualifiedName", new XmlQualifiedName("string", XmlSchema.Namespace), TypeFlags.CanBeAttributeValue | TypeFlags.HasCustomFormatter | TypeFlags.HasIsEmpty | TypeFlags.CanBeElementValue | TypeFlags.XmlEncodingNotRequired | TypeFlags.Reference); 664private static void AddNonXsdPrimitive(Type type, string dataTypeName, string ns, string formatterName, XmlQualifiedName baseTypeName, XmlSchemaFacet[] facets, TypeFlags flags) 682private static void AddSoapEncodedPrimitive(Type type, string dataTypeName, string ns, string formatterName, XmlQualifiedName baseTypeName, TypeFlags flags) 857else if (type == typeof(XmlQualifiedName)) 1395static internal XmlQualifiedName ParseWsdlArrayType(string type, out string dims, XmlSchemaObject parent)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionImporter.cs (4)
495if (!(typeof(XmlQualifiedName).IsAssignableFrom(getMethod.ReturnType)) && !(typeof(XmlSchemaType).IsAssignableFrom(getMethod.ReturnType))) 496throw new InvalidOperationException(string.Format(ResXml.XmlGetSchemaMethodReturnType, type.Name, provider.MethodName, typeof(XmlSchemaProviderAttribute).Name, typeof(XmlQualifiedName).FullName, typeof(XmlSchemaType).FullName)); 525XmlQualifiedName qname = serializableMapping.XsiType; 585internal void SetBase(SerializableMapping mapping, XmlQualifiedName baseQname)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (8)
56public XmlQualifiedName ExportTypeMapping(XmlMembersMapping xmlMembersMapping) 437private XmlQualifiedName ExportNonXsdPrimitiveMapping(PrimitiveMapping mapping, string ns) 605private XmlQualifiedName ExportPrimitiveMapping(PrimitiveMapping mapping, string ns) 607XmlQualifiedName qname; 1002private XmlQualifiedName ExportStructMapping(StructMapping mapping, string ns, XmlSchemaElement element) 1007return XmlQualifiedName.Empty; 1070return XmlQualifiedName.Empty; 1074XmlQualifiedName qname = new XmlQualifiedName(type.Name, mapping.Namespace);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (31)
68public XmlTypeMapping ImportDerivedTypeMapping(XmlQualifiedName name, Type baseType) 91public XmlTypeMapping ImportDerivedTypeMapping(XmlQualifiedName name, Type baseType, bool baseTypeCanBeIndirect) 120public XmlTypeMapping ImportSchemaType(XmlQualifiedName typeName) 130public XmlTypeMapping ImportSchemaType(XmlQualifiedName typeName, Type baseType) 139public XmlTypeMapping ImportSchemaType(XmlQualifiedName typeName, Type baseType, bool baseTypeCanBeIndirect) 180public XmlTypeMapping ImportTypeMapping(XmlQualifiedName name) 189public XmlMembersMapping ImportMembersMapping(XmlQualifiedName name) 195public XmlMembersMapping ImportAnyType(XmlQualifiedName typeName, string elementName) 238public XmlMembersMapping ImportMembersMapping(XmlQualifiedName[] names) 247public XmlMembersMapping ImportMembersMapping(XmlQualifiedName[] names, Type baseType, bool baseTypeCanBeIndirect) 254XmlQualifiedName name = names[i]; 298private ElementAccessor ImportElement(XmlQualifiedName name, Type desiredMappingType, Type baseType) 331XmlQualifiedName parentType = XmlSchemas.GetParentName(element); 420private void RunSchemaExtensions(TypeMapping mapping, XmlQualifiedName qname, XmlSchemaType type, XmlSchemaObject context, TypeFlags flags) 490XmlQualifiedName qname = new XmlQualifiedName(typeName, ns); 505internal override void ImportDerivedTypes(XmlQualifiedName baseName) 526private TypeMapping ImportType(XmlQualifiedName name, Type desiredMappingType, Type baseType, TypeFlags flags, bool addref) 735internal XmlQualifiedName baseSimpleType; 773XmlQualifiedName groupName = ((XmlSchemaAttributeGroupRef)item).RefName; 1215private void ImportTextMember(CodeIdentifiers members, CodeIdentifiers membersScope, XmlQualifiedName simpleContentType) 1312RunSchemaExtensions(mapping, XmlQualifiedName.Empty, null, any, flags); 1503RunSchemaExtensions(mapping, XmlQualifiedName.Empty, null, any, flags); 1689private AttributeAccessor ImportSpecialAttribute(XmlQualifiedName name, string identifier) 1955private XmlSchemaGroup FindGroup(XmlQualifiedName name) 1964private XmlSchemaAttributeGroup FindAttributeGroup(XmlQualifiedName name) 1973internal static XmlQualifiedName BaseTypeName(XmlSchemaSimpleType dataType) 2001XmlQualifiedName qname = BaseTypeName(dataType); 2010private XmlSchemaSimpleType FindDataType(XmlQualifiedName name, TypeFlags flags) 2039private XmlSchemaType FindType(XmlQualifiedName name, TypeFlags flags) 2053private XmlSchemaElement FindElement(XmlQualifiedName name) 2061private XmlSchemaAttribute FindAttribute(XmlQualifiedName name)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemas.cs (7)
313public object Find(XmlQualifiedName name, Type type) 317internal object Find(XmlQualifiedName name, Type type, bool checkCache) 575internal static XmlQualifiedName GetParentName(XmlSchemaObject item) 589return XmlQualifiedName.Empty; 628XmlQualifiedName parentName = XmlSchemas.GetParentName(o); 650XmlQualifiedName parentName = XmlSchemas.GetParentName(o); 661XmlQualifiedName parentName = XmlSchemas.GetParentName(o);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationGeneratedCode.cs (1)
57_qnameTypeDesc = scopes[0].GetTypeDesc(typeof(XmlQualifiedName));
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationILGen.cs (1)
43_qnameTypeDesc = scopes[0].GetTypeDesc(typeof(XmlQualifiedName));
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationReader.cs (24)
276protected XmlQualifiedName GetXsiType() 295private Type GetPrimitiveType(XmlQualifiedName typeName, bool throwOnUnknown) 345return typeof(XmlQualifiedName); 413return typeof(XmlQualifiedName); 469private XmlQualifiedName ReadXmlQualifiedName() 483XmlQualifiedName retVal = ToXmlQualifiedName(s); 540protected object ReadTypedPrimitive(XmlQualifiedName type) 545private object ReadTypedPrimitive(XmlQualifiedName type, bool elementCanBeType) 704protected object ReadTypedNull(XmlQualifiedName type) 881protected XmlQualifiedName ReadNullableQualifiedName() 891protected XmlQualifiedName ReadElementQualifiedName() 895XmlQualifiedName empty = new XmlQualifiedName(string.Empty, _r.LookupNamespace("")); 899XmlQualifiedName qname = ToXmlQualifiedName(CollapseWhitespace(_r.ReadString())); 989XmlQualifiedName qname = ToXmlQualifiedName(arrayInfo.qname, false); 1194protected XmlQualifiedName ToXmlQualifiedName(string value) 1199internal XmlQualifiedName ToXmlQualifiedName(string value, bool decodeName) 1363protected Exception CreateUnknownTypeException(XmlQualifiedName type) 1685XmlQualifiedName qname; 1688XmlQualifiedName urTypeName = new XmlQualifiedName(_urTypeID, _schemaNsID); 1728XmlQualifiedName newQname = (XmlQualifiedName)_typesReverse[elementType]; 1914XmlQualifiedName urType = new XmlQualifiedName(_urTypeID, _r.NameTable.Add(XmlSchema.Namespace)); 1931XmlQualifiedName typeId = GetXsiType(); 1956XmlQualifiedName typeName = new XmlQualifiedName(_r.NameTable.Add(name), _r.NameTable.Add(ns));
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationWriter.cs (34)
94XmlQualifiedName[] qnames = (XmlQualifiedName[])value.ToArray(typeof(XmlQualifiedName)); 189private XmlQualifiedName GetPrimitiveTypeName(Type type) 194private XmlQualifiedName GetPrimitiveTypeName(Type type, bool throwIfUnknown) 196XmlQualifiedName qname = GetPrimitiveTypeNameInternal(type); 202internal static XmlQualifiedName GetPrimitiveTypeNameInternal(Type type) 228if (type == typeof(XmlQualifiedName)) typeName = "QName"; 323if (t == typeof(XmlQualifiedName)) 333value = FromXmlQualifiedName((XmlQualifiedName)o, false); 420protected string FromXmlQualifiedName(XmlQualifiedName xmlQualifiedName) 426protected string FromXmlQualifiedName(XmlQualifiedName xmlQualifiedName, bool ignoreEmpty) 675protected void WriteNullableStringEncoded(string name, string ns, string value, XmlQualifiedName xsiType) 694protected void WriteNullableStringEncodedRaw(string name, string ns, string value, XmlQualifiedName xsiType) 703protected void WriteNullableStringEncodedRaw(string name, string ns, byte[] value, XmlQualifiedName xsiType) 733protected void WriteNullableQualifiedNameEncoded(string name, string ns, XmlQualifiedName value, XmlQualifiedName xsiType) 745protected void WriteNullableQualifiedNameLiteral(string name, string ns, XmlQualifiedName value) 941XmlQualifiedName qname = TypeScope.ParseWsdlArrayType(attr.Value, out dims, (container is XmlSchemaObject) ? (XmlSchemaObject)container : null); 1084protected void WriteElementString(String localName, String value, XmlQualifiedName xsiType) 1090protected void WriteElementString(String localName, String ns, String value, XmlQualifiedName xsiType) 1129protected void WriteElementStringRaw(String localName, String value, XmlQualifiedName xsiType) 1135protected void WriteElementStringRaw(String localName, byte[] value, XmlQualifiedName xsiType) 1141protected void WriteElementStringRaw(String localName, String ns, String value, XmlQualifiedName xsiType) 1152protected void WriteElementStringRaw(String localName, String ns, byte[] value, XmlQualifiedName xsiType) 1173protected void WriteElementQualifiedName(String localName, XmlQualifiedName value) 1179protected void WriteElementQualifiedName(string localName, XmlQualifiedName value, XmlQualifiedName xsiType) 1188protected void WriteElementQualifiedName(String localName, String ns, XmlQualifiedName value) 1194protected void WriteElementQualifiedName(string localName, string ns, XmlQualifiedName value, XmlQualifiedName xsiType) 1252XmlQualifiedName qualName = GetPrimitiveTypeName(elementType, false); 1281XmlQualifiedName qualName = GetPrimitiveTypeName(elementType); 1372if (Convert.GetTypeCode(o) == TypeCode.Object && !(o is Guid) && (t != typeof(XmlQualifiedName)) && !(o is XmlNode[]) && (t != typeof(byte[])))
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationWriterILGen.cs (2)
257argTypes.Add(typeof(XmlQualifiedName)); 258ConstructorInfo XmlQualifiedName_ctor = typeof(XmlQualifiedName).GetConstructor(new Type[] { typeof(String), typeof(String) });
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializer.cs (2)
825if (_primitiveType == typeof(XmlQualifiedName)) 899if (_primitiveType == typeof(XmlQualifiedName))
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializerNamespaces.cs (6)
44public XmlSerializerNamespaces(XmlQualifiedName[] namespaces) 48XmlQualifiedName qname = namespaces[i]; 77public XmlQualifiedName[] ToArray() 80return new XmlQualifiedName[0]; 81return (XmlQualifiedName[])NamespaceList.ToArray(typeof(XmlQualifiedName));
FrameworkFork\Microsoft.Xml\Xml\XmlQualifiedName.cs (12)
35public static readonly XmlQualifiedName Empty = new XmlQualifiedName(string.Empty); 115XmlQualifiedName qname; 122qname = other as XmlQualifiedName; 134public static bool operator ==(XmlQualifiedName a, XmlQualifiedName b) 149public static bool operator !=(XmlQualifiedName a, XmlQualifiedName b) 203internal static XmlQualifiedName Parse(string s, IXmlNamespaceResolver nsmgr, out string prefix) 223internal XmlQualifiedName Clone() 225return (XmlQualifiedName)MemberwiseClone(); 228internal static int Compare(XmlQualifiedName a, XmlQualifiedName b)
FrameworkFork\Microsoft.Xml\Xml\Xslt\XsltArgumentList.cs (2)
47XmlQualifiedName qname = new XmlQualifiedName(name, namespaceUri); 61XmlQualifiedName qname = new XmlQualifiedName(name, namespaceUri);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\ClassDataContract.cs (3)
16using DataContractDictionary = System.Collections.Generic.Dictionary<Microsoft.Xml.XmlQualifiedName, DataContract>; 784XmlQualifiedName stableName = GetStableNameAndSetHasDataContract(type); 1170private XmlQualifiedName GetStableNameAndSetHasDataContract(Type type)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\CodeExporter.cs (14)
19using DataContractDictionary = System.Collections.Generic.Dictionary<Microsoft.Xml.XmlQualifiedName, DataContract>; 56foreach (KeyValuePair<XmlQualifiedName, DataContract> pair in dataContractSet) 228private bool TryGetReferencedType(XmlQualifiedName stableName, DataContract dataContract, out Type type) 265foreach (KeyValuePair<XmlQualifiedName, DataContract> pair in _dataContractSet) 277ExportClassDataContractHierarchy(classDataContract.StableName, classDataContract, contractCodeDomInfo, new Dictionary<XmlQualifiedName, object>()); 304private void ExportClassDataContractHierarchy(XmlQualifiedName typeName, ClassDataContract classContract, ContractCodeDomInfo contractCodeDomInfo, Dictionary<XmlQualifiedName, object> contractNamesInHierarchy) 372private XmlQualifiedName GenericListName 382private XmlQualifiedName GenericDictionaryName 574XmlQualifiedName genericStableName = dataContract.GenericInfo.GetExpandedStableName(); 628XmlQualifiedName expectedType = itemContract.GetArrayTypeName(collectionContract.IsItemTypeNullable); 720XmlQualifiedName stableName = paramInfo.GetExpandedStableName(); 986foreach (KeyValuePair<XmlQualifiedName, DataContract> pair in knownContracts) 1222XmlQualifiedName typeName = xmlDataContract.IsAnonymous
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\CollectionDataContract.cs (1)
16using DataContractDictionary = System.Collections.Generic.Dictionary<Microsoft.Xml.XmlQualifiedName, DataContract>;
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\DataContract.cs (32)
14using DataContractDictionary = System.Collections.Generic.Dictionary<Microsoft.Xml.XmlQualifiedName, DataContract>; 351public XmlQualifiedName StableName 530private static Dictionary<XmlQualifiedName, DataContract> s_nameToBuiltInContract; 545private XmlQualifiedName _stableName; 833s_nameToBuiltInContract = new Dictionary<XmlQualifiedName, DataContract>(); 836XmlQualifiedName qname = new XmlQualifiedName(name, ns); 924else if (type == typeof(XmlQualifiedName)) 1169internal XmlQualifiedName StableName 1260internal void SetDataContractName(XmlQualifiedName stableName) 1401internal static XmlQualifiedName GetStableName(Type type) 1407internal static XmlQualifiedName GetStableName(Type type, out bool hasDataContract) 1419internal static XmlQualifiedName GetStableName(Type type, HashSet<Type> previousCollectionTypes, out bool hasDataContract) 1422XmlQualifiedName stableName; 1445private static XmlQualifiedName GetDCTypeStableName(Type type, DataContractAttribute dataContractAttribute) 1473private static XmlQualifiedName GetNonDCTypeStableName(Type type, HashSet<Type> previousCollectionTypes) 1498private static bool TryGetBuiltInXmlAndArrayTypeStableName(Type type, HashSet<Type> previousCollectionTypes, out XmlQualifiedName stableName) 1511XmlQualifiedName xmlTypeStableName; 1572internal static XmlQualifiedName GetCollectionStableName(Type type, Type itemType, out CollectionDataContractAttribute collectionContractAttribute) 1577internal static XmlQualifiedName GetCollectionStableName(Type type, Type itemType, HashSet<Type> previousCollectionTypes, out CollectionDataContractAttribute collectionContractAttribute) 1614XmlQualifiedName elementStableName = GetStableName(itemType, previousCollectionTypes, out bool hasDataContract); 1634internal XmlQualifiedName GetArrayTypeName(bool isNullable) 1636XmlQualifiedName itemName; 1656internal static XmlQualifiedName GetDefaultStableName(Type type) 1698XmlQualifiedName qname = DataContract.GetStableName(genParam); 1780internal static XmlQualifiedName CreateQualifiedName(string localName, string ns) 2406private XmlQualifiedName GetStableName(int i) 2409XmlQualifiedName qname = o as XmlQualifiedName; 2425private XmlQualifiedName _stableName; 2429internal GenericInfo(XmlQualifiedName stableName, string genericTypeName) 2457internal XmlQualifiedName GetExpandedStableName() 2469internal XmlQualifiedName StableName
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\DataContractSerializer.cs (1)
18using DataContractDictionary = System.Collections.Generic.Dictionary<Microsoft.Xml.XmlQualifiedName, DataContract>;
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\DataContractSet.cs (24)
13using DataContractDictionary = System.Collections.Generic.Dictionary<Microsoft.Xml.XmlQualifiedName, DataContract>; 17private Dictionary<XmlQualifiedName, DataContract> _contracts; 24private Dictionary<XmlQualifiedName, object> _referencedTypesDictionary; 25private Dictionary<XmlQualifiedName, object> _referencedCollectionTypesDictionary; 43foreach (KeyValuePair<XmlQualifiedName, DataContract> pair in dataContractSet) 57private Dictionary<XmlQualifiedName, DataContract> Contracts 63_contracts = new Dictionary<XmlQualifiedName, DataContract>(); 115public void Add(XmlQualifiedName name, DataContract dataContract) 122internal void InternalAdd(XmlQualifiedName name, DataContract dataContract) 219internal XmlQualifiedName GetStableName(Type clrType) 296public DataContract this[XmlQualifiedName key] 314public bool Remove(XmlQualifiedName key) 321public IEnumerator<KeyValuePair<XmlQualifiedName, DataContract>> GetEnumerator() 348private Dictionary<XmlQualifiedName, object> GetReferencedTypes() 352_referencedTypesDictionary = new Dictionary<XmlQualifiedName, object>(); 370private Dictionary<XmlQualifiedName, object> GetReferencedCollectionTypes() 374_referencedCollectionTypesDictionary = new Dictionary<XmlQualifiedName, object>(); 384XmlQualifiedName genericDictionaryName = DataContract.GetStableName(Globals.TypeOfDictionaryGeneric); 391private void AddReferencedType(Dictionary<XmlQualifiedName, object> referencedTypes, Type type) 395XmlQualifiedName stableName; 438internal bool TryGetReferencedType(XmlQualifiedName stableName, DataContract dataContract, out Type type) 443internal bool TryGetReferencedCollectionType(XmlQualifiedName stableName, DataContract dataContract, out Type type) 448private bool TryGetReferencedType(XmlQualifiedName stableName, DataContract dataContract, bool useReferencedCollectionTypes, out Type type) 451Dictionary<XmlQualifiedName, object> referencedTypes = useReferencedCollectionTypes ? GetReferencedCollectionTypes() : GetReferencedTypes();
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\EnumDataContract.cs (10)
48static internal Type GetBaseType(XmlQualifiedName baseContractName) 53internal XmlQualifiedName BaseContractName 147private static Dictionary<Type, XmlQualifiedName> s_typeToName; 148private static Dictionary<XmlQualifiedName, Type> s_nameToType; 150private XmlQualifiedName _baseContractName; 160s_typeToName = new Dictionary<Type, XmlQualifiedName>(); 161s_nameToType = new Dictionary<XmlQualifiedName, Type>(); 174XmlQualifiedName stableName = CreateQualifiedName(localName, Globals.SchemaNamespace); 179static internal Type GetBaseType(XmlQualifiedName baseContractName) 220internal XmlQualifiedName BaseContractName
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\ExceptionDataContract.cs (4)
77public override Dictionary<XmlQualifiedName, DataContract> KnownDataContracts //inherited as internal 113private Dictionary<XmlQualifiedName, DataContract> _knownDataContracts; 206internal override Dictionary<XmlQualifiedName, DataContract> KnownDataContracts // inherited as internal 212_knownDataContracts = new Dictionary<XmlQualifiedName, DataContract>();
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\Globals.cs (5)
34private static XmlQualifiedName s_idQualifiedName; 35internal static XmlQualifiedName IdQualifiedName 47private static XmlQualifiedName s_refQualifiedName; 48internal static XmlQualifiedName RefQualifiedName 543s_typeOfXmlQualifiedName = typeof(XmlQualifiedName);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\PrimitiveDataContract.cs (2)
828public QNameDataContract() : base(typeof(XmlQualifiedName), DictionaryGlobals.QNameLocalName, DictionaryGlobals.SchemaNamespace) 842writer.WriteQName((XmlQualifiedName)obj);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaExporter.cs (22)
17internal static void GetXmlTypeInfo(Type type, out XmlQualifiedName stableName, out XmlSchemaType xsdType, out bool hasRoot) 32private static bool InvokeSchemaProviderMethod(Type clrType, XmlSchemaSet schemas, out XmlQualifiedName stableName, out XmlSchemaType xsdType, out bool hasRoot) 81stableName = (XmlQualifiedName)typeInfo; 113internal static bool IsSpecialXmlType(Type type, out XmlQualifiedName typeName, out XmlSchemaType xsdType, out bool hasRoot) 157private static XmlQualifiedName s_anytypeQualifiedName; 158internal static XmlQualifiedName AnytypeQualifiedName 174private static XmlQualifiedName s_stringQualifiedName; 175internal static XmlQualifiedName StringQualifiedName 191private static XmlQualifiedName s_defaultEnumBaseTypeName; 192internal static XmlQualifiedName DefaultEnumBaseTypeName 208private static XmlQualifiedName s_enumerationValueAnnotationName; 209internal static XmlQualifiedName EnumerationValueAnnotationName 225private static XmlQualifiedName s_surrogateDataAnnotationName; 226internal static XmlQualifiedName SurrogateDataAnnotationName 242private static XmlQualifiedName s_defaultValueAnnotation; 243internal static XmlQualifiedName DefaultValueAnnotation 259private static XmlQualifiedName s_actualTypeAnnotationName; 260internal static XmlQualifiedName ActualTypeAnnotationName 276private static XmlQualifiedName s_isDictionaryAnnotationName; 277internal static XmlQualifiedName IsDictionaryAnnotationName 293private static XmlQualifiedName s_isValueTypeName; 294internal static XmlQualifiedName IsValueTypeName
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaHelper.cs (6)
12using SchemaObjectDictionary = System.Collections.Generic.Dictionary<Microsoft.Xml.XmlQualifiedName, SchemaObjectInfo>; 40internal static XmlSchemaType GetSchemaType(SchemaObjectDictionary schemaInfo, XmlQualifiedName typeName) 50internal static XmlSchema GetSchemaWithType(SchemaObjectDictionary schemaInfo, XmlSchemaSet schemas, XmlQualifiedName typeName) 70internal static XmlSchemaElement GetSchemaElement(SchemaObjectDictionary schemaInfo, XmlQualifiedName elementName) 100internal static XmlQualifiedName GetGlobalElementDeclaration(XmlSchemaSet schemas, XmlQualifiedName typeQName, out bool isNullable)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaImporter.cs (60)
17using DataContractDictionary = System.Collections.Generic.Dictionary<Microsoft.Xml.XmlQualifiedName, DataContract>; 18using SchemaObjectDictionary = System.Collections.Generic.Dictionary<Microsoft.Xml.XmlQualifiedName, SchemaObjectInfo>; 24private ICollection<XmlQualifiedName> _typeNames; 26private XmlQualifiedName[] _elementTypeNames; 38internal SchemaImporter(XmlSchemaSet schemas, ICollection<XmlQualifiedName> typeNames, ICollection<XmlSchemaElement> elements, XmlQualifiedName[] elementTypeNames, DataContractSet dataContractSet, bool importXmlDataType) 99foreach (XmlQualifiedName typeName in _typeNames) 111XmlQualifiedName typeName = element.SchemaTypeName; 172private void ImportKnownTypes(XmlQualifiedName typeName) 259XmlQualifiedName currentTypeName = new XmlQualifiedName(schemaType.Name, schema.TargetNamespace); 271XmlQualifiedName baseTypeName = GetBaseTypeName(schemaType); 296XmlQualifiedName currentElementName = new XmlQualifiedName(schemaElement.Name, schema.TargetNamespace); 314private XmlQualifiedName GetBaseTypeName(XmlSchemaType type) 316XmlQualifiedName baseTypeName = null; 358private DataContract ImportAnonymousGlobalElement(XmlSchemaElement element, XmlQualifiedName typeQName, string ns) 370private DataContract ImportAnonymousElement(XmlSchemaElement element, XmlQualifiedName typeQName) 389private DataContract ImportType(XmlQualifiedName typeName) 410private DataContract ImportType(XmlSchemaType type, XmlQualifiedName typeName, bool isAnonymous) 477XmlQualifiedName baseTypeName = restriction.BaseTypeName; 489if (type.QualifiedName != XmlQualifiedName.Empty) 528private void RemoveFailedContract(XmlQualifiedName typeName) 553XmlQualifiedName expectedBase = SchemaExporter.StringQualifiedName; 554if (restriction.BaseTypeName != XmlQualifiedName.Empty) 628private DataContract ImportType(XmlQualifiedName typeName, XmlSchemaParticle rootParticle, XmlSchemaObjectCollection attributes, XmlSchemaAnyAttribute anyAttribute, XmlQualifiedName baseTypeName, XmlSchemaAnnotation annotation) 661private ClassDataContract ImportClass(XmlQualifiedName typeName, XmlSchemaSequence rootSequence, XmlQualifiedName baseTypeName, XmlSchemaAnnotation annotation, bool isReference) 704private DataContract ImportXmlDataType(XmlQualifiedName typeName, XmlSchemaType xsdType, bool isAnonymous) 752XmlQualifiedName xlinqTypeName = new XmlQualifiedName("XElement", "http://schemas.datacontract.org/2004/07/System.Xml.Linq"); 816private bool IsValueType(XmlQualifiedName typeName, XmlSchemaAnnotation annotation) 836private ClassDataContract ImportISerializable(XmlQualifiedName typeName, XmlSchemaSequence rootSequence, XmlQualifiedName baseTypeName, XmlSchemaObjectCollection attributes, XmlSchemaAnnotation annotation) 858private void CheckISerializableBase(XmlQualifiedName typeName, XmlSchemaSequence rootSequence, XmlSchemaObjectCollection attributes) 883XmlQualifiedName factoryTypeAttributeRefName = SchemaExporter.ISerializableFactoryTypeAttribute.RefName; 904private bool IsISerializableDerived(XmlQualifiedName typeName, XmlSchemaSequence rootSequence) 912private void ImportBaseContract(XmlQualifiedName baseTypeName, ClassDataContract dataContract) 938private void ImportTopLevelElement(XmlQualifiedName typeName) 946XmlQualifiedName elementTypeName = topLevelElement.SchemaTypeName; 962XmlQualifiedName typeName = dataContract.StableName; 992XmlQualifiedName memberTypeName = ImportActualType(element.Annotation, element.SchemaTypeName, typeName); 1022XmlQualifiedName surrogateDataAnnotationName = SchemaExporter.SurrogateDataAnnotationName; 1028private bool? ImportEmitDefaultValue(XmlSchemaAnnotation annotation, XmlQualifiedName typeName) 1040internal static XmlQualifiedName ImportActualType(XmlSchemaAnnotation annotation, XmlQualifiedName defaultTypeName, XmlQualifiedName typeName) 1060private CollectionDataContract ImportCollection(XmlQualifiedName typeName, XmlSchemaSequence rootSequence, XmlSchemaObjectCollection attributes, XmlSchemaAnnotation annotation, bool isReference) 1083XmlQualifiedName shortName = new XmlQualifiedName(element.Name, typeName.Namespace); 1091XmlQualifiedName fullName = new XmlQualifiedName(String.Format(CultureInfo.InvariantCulture, "{0}.{1}Type", typeName.Name, element.Name), typeName.Namespace); 1152private bool IsDictionary(XmlQualifiedName typeName, XmlSchemaAnnotation annotation) 1169private EnumDataContract ImportFlagsEnum(XmlQualifiedName typeName, XmlSchemaSimpleTypeList list, XmlSchemaAnnotation annotation) 1194private EnumDataContract ImportEnum(XmlQualifiedName typeName, XmlSchemaSimpleTypeRestriction restriction, bool isFlags, XmlSchemaAnnotation annotation) 1224private DataContract ImportSimpleTypeRestriction(XmlQualifiedName typeName, XmlSchemaSimpleTypeRestriction restriction) 1252XmlQualifiedName surrogateDataAnnotationName = SchemaExporter.SurrogateDataAnnotationName; 1353private void CheckComplexType(XmlQualifiedName typeName, XmlSchemaComplexType type) 1361private void CheckIfElementUsesUnsupportedConstructs(XmlQualifiedName typeName, XmlSchemaElement element) 1373private void ImportAttributes(XmlQualifiedName typeName, XmlSchemaObjectCollection attributes, XmlSchemaAnyAttribute anyAttribute, out bool isReference) 1402private bool TryCheckIfAttribute(XmlQualifiedName typeName, XmlSchemaAttribute attribute, XmlQualifiedName refName, ref bool foundAttribute) 1417private string GetInnerText(XmlQualifiedName typeName, XmlElement xmlElement) 1433private static XmlElement ImportAnnotation(XmlSchemaAnnotation annotation, XmlQualifiedName annotationQualifiedName)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\ScopedKnownTypes.cs (2)
9using DataContractDictionary = System.Collections.Generic.Dictionary<Microsoft.Xml.XmlQualifiedName, DataContract>; 29internal DataContract GetDataContract(XmlQualifiedName qname)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlDataContract.cs (3)
12using DataContractDictionary = System.Collections.Generic.Dictionary<Microsoft.Xml.XmlQualifiedName, DataContract>; 240XmlQualifiedName stableName; 371internal void SetTopLevelElementName(XmlQualifiedName elementName)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlObjectSerializer.cs (1)
15using DataContractDictionary = System.Collections.Generic.Dictionary<Microsoft.Xml.XmlQualifiedName, DataContract>;
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlObjectSerializerContext.cs (5)
13using DataContractDictionary = System.Collections.Generic.Dictionary<Microsoft.Xml.XmlQualifiedName, DataContract>; 191private DataContract GetDataContractFromSerializerKnownTypes(XmlQualifiedName qname) 240internal Type ResolveNameFromKnownTypes(XmlQualifiedName typeName) 246private DataContract ResolveDataContractFromKnownTypes(XmlQualifiedName typeName) 268XmlQualifiedName qname = new XmlQualifiedName(typeName, typeNs);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlObjectSerializerReadContext.cs (1)
15using DataContractDictionary = System.Collections.Generic.Dictionary<Microsoft.Xml.XmlQualifiedName, DataContract>;
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlObjectSerializerWriteContext.cs (3)
385internal virtual void WriteQName(XmlWriterDelegator xmlWriter, XmlQualifiedName value) 393internal virtual void WriteQName(XmlWriterDelegator xmlWriter, XmlQualifiedName value, XmlDictionaryString name, XmlDictionaryString ns) 397WriteNull(xmlWriter, typeof(XmlQualifiedName), true/*isMemberTypeSerializable*/, name, ns);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlObjectSerializerWriteContextComplex.cs (3)
150internal override void WriteQName(XmlWriterDelegator xmlWriter, XmlQualifiedName value) 160internal override void WriteQName(XmlWriterDelegator xmlWriter, XmlQualifiedName value, XmlDictionaryString name, XmlDictionaryString ns) 164WriteNull(xmlWriter, typeof(XmlQualifiedName), true/*isMemberTypeSerializable*/, name, ns);
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlReaderDelegator.cs (4)
595internal XmlQualifiedName ReadElementContentAsQName() 599XmlQualifiedName obj = ReadContentAsQName(); 604internal virtual XmlQualifiedName ReadContentAsQName() 609private XmlQualifiedName ParseQualifiedName(string str)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XmlWriterDelegator.cs (3)
363WriteQName((XmlQualifiedName)value); 636internal virtual void WriteQName(XmlQualifiedName value) 638if (value != XmlQualifiedName.Empty)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XsdDataContractImporter.cs (19)
21private static readonly XmlQualifiedName[] s_emptyTypeNameArray = new XmlQualifiedName[0]; 24private XmlQualifiedName[] _singleTypeNameArray; 80public void Import(XmlSchemaSet schemas, ICollection<XmlQualifiedName> typeNames) 91public void Import(XmlSchemaSet schemas, XmlQualifiedName typeName) 103public XmlQualifiedName Import(XmlSchemaSet schemas, XmlSchemaElement element) 125public bool CanImport(XmlSchemaSet schemas, ICollection<XmlQualifiedName> typeNames) 136public bool CanImport(XmlSchemaSet schemas, XmlQualifiedName typeName) 144return InternalCanImport(schemas, new XmlQualifiedName[] { typeName }, s_emptyElementArray, s_emptyTypeNameArray); 160public CodeTypeReference GetCodeTypeReference(XmlQualifiedName typeName) 167public CodeTypeReference GetCodeTypeReference(XmlQualifiedName typeName, XmlSchemaElement element) 179internal DataContract FindDataContract(XmlQualifiedName typeName) 194public ICollection<CodeTypeReference> GetKnownTypeReferences(XmlQualifiedName typeName) 211private XmlQualifiedName[] SingleTypeNameArray 216_singleTypeNameArray = new XmlQualifiedName[1]; 231private void InternalImport(XmlSchemaSet schemas, ICollection<XmlQualifiedName> typeNames, ICollection<XmlSchemaElement> elements, XmlQualifiedName[] elementTypeNames/*filled on return*/) 266private bool InternalCanImport(XmlSchemaSet schemas, ICollection<XmlQualifiedName> typeNames, ICollection<XmlSchemaElement> elements, XmlQualifiedName[] elementTypeNames)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CompositeDuplexBindingElement.cs (1)
79XmlQualifiedName refPropHeaderName = new XmlQualifiedName(XD.UtilityDictionary.UniqueEndpointHeaderName.Value,
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportBindingElementImporter.cs (10)
122XmlQualifiedName wsdlBindingQName; 193private static Dictionary<XmlQualifiedName, XmlQualifiedName> GetGeneratedTransportBindingElements(MetadataImporter importer) 198retValue = new Dictionary<XmlQualifiedName, XmlQualifiedName>(); 201return (Dictionary<XmlQualifiedName, XmlQualifiedName>)retValue; 204internal static void RegisterTransportBindingElement(MetadataImporter importer, XmlQualifiedName wsdlBindingQName) 211XmlQualifiedName wsdlBindingQName = new XmlQualifiedName(context.WsdlBinding.Name, context.WsdlBinding.ServiceDescription.TargetNamespace); 217XmlQualifiedName key = new XmlQualifiedName(context.WsdlBinding.Name, context.WsdlBinding.ServiceDescription.TargetNamespace);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\UdpTransportImporter.cs (1)
46XmlQualifiedName wsdlBindingQName;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\UnrecognizedAssertionsBindingElement.cs (3)
16private XmlQualifiedName _wsdlBinding; 21internal protected UnrecognizedAssertionsBindingElement(XmlQualifiedName wsdlBinding, ICollection<XmlElement> bindingAsserions) 28internal XmlQualifiedName WsdlBinding
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\DataContractSerializerMessageContractImporter.cs (2)
28static internal XmlQualifiedName GenericMessageTypeName = new XmlQualifiedName(GenericMessageSchemaTypeName, GenericMessageSchemaTypeNamespace); 29static internal XmlQualifiedName StreamBodyTypeName = new XmlQualifiedName(StreamBodySchemaTypeName, StreamBodySchemaTypeNamespace);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageContractImporter.cs (59)
28private static readonly XmlQualifiedName s_anyType = new XmlQualifiedName("anyType", XmlSchema.Namespace); 234XmlQualifiedName detailElementTypeName; 235XmlQualifiedName detailElementQname; 574XmlQualifiedName detailElementTypeName; 575XmlQualifiedName detailElementQname; 597out XmlQualifiedName detailElementTypeName, out XmlQualifiedName detailElementQname) 664XmlQualifiedName typeName = part.Type; 700XmlQualifiedName typeName = part.Type; 721XmlQualifiedName elementName = wsdlPart.Element; 783private static XmlSchemaElement FindSchemaElement(XmlSchemaSet schemaSet, XmlQualifiedName elementName) 789private static XmlSchemaElement FindSchemaElement(XmlSchemaSet schemaSet, XmlQualifiedName elementName, out XmlSchema containingSchema) 807private static XmlSchemaType FindSchemaType(XmlSchemaSet schemaSet, XmlQualifiedName typeName) 815private static XmlSchemaType FindSchemaType(XmlSchemaSet schemaSet, XmlQualifiedName typeName, out XmlSchema containingSchema) 843XmlQualifiedName[] wsdlPrefixNsPairs = wsdl.Namespaces.ToArray(); 849XmlQualifiedName[] xsdPrefixNsPairs = xsdNamespaces.ToArray(); 851foreach (XmlQualifiedName pair in xsdPrefixNsPairs) 853foreach (XmlQualifiedName pair in wsdlPrefixNsPairs) 1206private static XmlQualifiedName GetTypeName(XmlSchemaElement element) 1209return XmlQualifiedName.Empty; 1216private static bool IsNullOrEmpty(XmlQualifiedName qname) 1226private static bool CheckAndAddPart(XmlQualifiedName typeNameFound, XmlQualifiedName typeNameRequired, string name, string ns, Type type, MessageDescription description, bool isReply) 1239private static bool CheckPart(XmlQualifiedName typeNameFound, XmlQualifiedName typeNameRequired) 1244private static XmlSchemaComplexType GetElementComplexType(XmlQualifiedName elementName, XmlSchemaSet schemaSet, out string ns, out XmlSchemaForm elementFormDefault) 1258XmlQualifiedName schemaTypeName = GetTypeName(schemaElement); 1450internal XmlQualifiedName GetPartName(WsdlNS.MessagePart part) 1487internal MessagePartDescription ImportParameterElement(XmlQualifiedName elementName, bool isHeader, bool isMultiple) 1505internal virtual bool CanImportFault(XmlSchemaElement detailElement, XmlQualifiedName detailElementTypeName) 1510internal virtual CodeTypeReference ImportFaultElement(XmlQualifiedName elementName, XmlSchemaElement element, bool isEncoded) 1515internal virtual CodeTypeReference ImportFaultType(XmlQualifiedName elementName, XmlQualifiedName typeName, bool isEncoded) 1530internal abstract bool CanImportType(XmlQualifiedName typeName); 1531internal abstract string ImportType(MessagePartDescription part, XmlQualifiedName typeName, bool isEncoded); 1534internal abstract bool CanImportWrapperElement(XmlQualifiedName elementName); 1535internal abstract MessagePartDescription[] ImportWrapperElement(XmlQualifiedName elementName); 1584internal override bool CanImportType(XmlQualifiedName typeName) 1588internal override bool CanImportWrapperElement(XmlQualifiedName elementName) 1616internal override bool CanImportFault(XmlSchemaElement detailElement, XmlQualifiedName detailElementTypeName) 1639internal override MessagePartDescription[] ImportWrapperElement(XmlQualifiedName elementName) 1666internal override string ImportType(MessagePartDescription part, XmlQualifiedName typeName, bool isEncoded) 1701XmlQualifiedName typeName = null; 1740private bool IsValueType(XmlQualifiedName typeName) 1776internal override CodeTypeReference ImportFaultElement(XmlQualifiedName elementName, XmlSchemaElement element, bool isEncoded) 1781XmlQualifiedName typeName = DataContractImporter.Import(schemaSet, element); 1803internal override CodeTypeReference ImportFaultType(XmlQualifiedName elementName, XmlQualifiedName typeName, bool isEncoded) 1817internal bool CanImportFaultType(XmlQualifiedName typeName) 1962internal override bool CanImportType(XmlQualifiedName typeName) 1967internal override bool CanImportWrapperElement(XmlQualifiedName elementName) 1977internal override bool CanImportFault(XmlSchemaElement detailElement, XmlQualifiedName detailElementTypeName) 1996internal override MessagePartDescription[] ImportWrapperElement(XmlQualifiedName elementName) 2012internal override CodeTypeReference ImportFaultElement(XmlQualifiedName elementName, XmlSchemaElement element, bool isEncoded) 2016XmlMembersMapping membersMapping = _xmlImporter.ImportMembersMapping(new XmlQualifiedName[] { elementName }); 2021internal override CodeTypeReference ImportFaultType(XmlQualifiedName elementName, XmlQualifiedName typeName, bool isEncoded) 2042internal override string ImportType(MessagePartDescription part, XmlQualifiedName typeName, bool isEncoded) 2061XmlMembersMapping membersMapping = _xmlImporter.ImportMembersMapping(new XmlQualifiedName[] { element.QualifiedName });
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageDescription.cs (2)
23private XmlQualifiedName _xsdType; 173internal XmlQualifiedName XsdTypeName
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageHeaderDescriptionCollection.cs (2)
10public class MessageHeaderDescriptionCollection : KeyedCollection<XmlQualifiedName, MessageHeaderDescription> 16protected override XmlQualifiedName GetKeyForItem(MessageHeaderDescription item)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessagePartDescriptionCollection.cs (2)
10public class MessagePartDescriptionCollection : KeyedCollection<XmlQualifiedName, MessagePartDescription> 17protected override XmlQualifiedName GetKeyForItem(MessagePartDescription item)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataImporter.cs (3)
18private readonly Dictionary<XmlQualifiedName, ContractDescription> _knownContracts = new Dictionary<XmlQualifiedName, ContractDescription>(); 65public Dictionary<XmlQualifiedName, ContractDescription> KnownContracts
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataSet.cs (12)
456Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 461if (!_processOuterElement || (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id3_MetadataSet && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id2_Item))) 465throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType)); 518Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 523if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id4_MetadataSection && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id2_Item)) 527throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType)); 614Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 619if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id14_MetadataLocation && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id2_Item)) 623throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType));
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\SchemaHelper.cs (1)
180XmlQualifiedName typeName = element.SchemaTypeName;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceEndpointCollection.cs (5)
34public ServiceEndpoint Find(XmlQualifiedName contractName) 52public ServiceEndpoint Find(Type contractType, XmlQualifiedName bindingName) 76public ServiceEndpoint Find(XmlQualifiedName contractName, XmlQualifiedName bindingName) 139public Collection<ServiceEndpoint> FindAll(XmlQualifiedName contractName)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceReflector.cs (3)
83internal static XmlQualifiedName GetContractName(Type contractType, string name, string ns) 105XmlQualifiedName contractQname = new XmlQualifiedName(contract.Name, contract.Namespace); 111internal static string GetMessageAction(XmlQualifiedName contractName, string opname, string action, bool isResponse)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (6)
183XmlQualifiedName contractName = NamingHelper.GetContractName(channelType, null, NamingHelper.MSNamespace); 198XmlQualifiedName contractName = NamingHelper.GetContractName(channelType, null, NamingHelper.MSNamespace); 742XmlQualifiedName contractName = NamingHelper.GetContractName(contractType, contractAttr.Name, contractAttr.Namespace); 970XmlQualifiedName contractQname = new XmlQualifiedName(declaringContract.Name, declaringContract.Namespace); 1096XmlQualifiedName contractName, 1540private void AddSortedParts<T>(List<T> partDescriptionList, KeyedCollection<XmlQualifiedName, T> partDescriptionCollection)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlExporter.cs (19)
108public void ExportEndpoints(IEnumerable<ServiceEndpoint> endpoints, XmlQualifiedName wsdlServiceQName) 113internal void ExportEndpoints(IEnumerable<ServiceEndpoint> endpoints, XmlQualifiedName wsdlServiceQName, BindingParameterCollection bindingParameters) 145private void ExportEndpoint(ServiceEndpoint endpoint, XmlQualifiedName wsdlServiceQName, BindingParameterCollection bindingParameters) 256XmlQualifiedName wsdlPortTypeQName = WsdlNamingHelper.GetPortTypeQName(contract); 307private WsdlNS.Binding CreateWsdlBindingAndPort(ServiceEndpoint endpoint, XmlQualifiedName wsdlServiceQName, out WsdlNS.Port wsdlPort, out bool newBinding, out bool bindingNameWasUniquified) 312XmlQualifiedName wsdlBindingQName; 313XmlQualifiedName wsdlPortTypeQName; 502private WsdlNS.Service GetOrCreateWsdlService(XmlQualifiedName wsdlServiceQName) 1002private static bool PrefixExists(XmlQualifiedName[] prefixDefinitions, string prefix) 1004return Array.Exists<XmlQualifiedName>(prefixDefinitions, 1005delegate (XmlQualifiedName prefixDef) 1015private static bool TryMatchNamespace(XmlQualifiedName[] prefixDefinitions, string ns, out string prefix) 1018Array.Find<XmlQualifiedName>(prefixDefinitions, 1019delegate (XmlQualifiedName prefixDef) 1036internal static XmlQualifiedName GetPortTypeQName(ContractDescription contract) 1041internal static XmlQualifiedName GetBindingQName(ServiceEndpoint endpoint, WsdlExporter exporter, out bool wasUniquified) 1059XmlQualifiedName wsdlBindingQName = new XmlQualifiedName(localName, bindingWsdlNamespace); 1254public readonly XmlQualifiedName ServiceQName; 1256public EndpointDictionaryKey(ServiceEndpoint endpoint, XmlQualifiedName serviceQName)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlImporter.cs (27)
26private readonly Dictionary<XmlQualifiedName, WsdlContractConversionContext> _importedPortTypes = new Dictionary<XmlQualifiedName, WsdlContractConversionContext>(); 27private readonly Dictionary<XmlQualifiedName, WsdlEndpointConversionContext> _importedBindings = new Dictionary<XmlQualifiedName, WsdlEndpointConversionContext>(); 304XmlQualifiedName wsdlPortTypeQName = new XmlQualifiedName(wsdlPortType.Name, wsdlPortType.ServiceDescription.TargetNamespace); 364XmlQualifiedName wsdlBindingQName = new XmlQualifiedName(wsdlBinding.Name, wsdlBinding.ServiceDescription.TargetNamespace); 415XmlQualifiedName bindingQName = WsdlNamingHelper.GetBindingName(wsdlBinding); 467XmlQualifiedName bindingQName = WsdlNamingHelper.GetBindingName(wsdlPort); 533private ContractDescription CreateContractDescription(WsdlNS.PortType wsdlPortType, XmlQualifiedName wsdlPortTypeQName) 536XmlQualifiedName contractQName = WsdlNamingHelper.GetContractName(wsdlPortTypeQName); 551private Binding CreateBinding(WsdlEndpointConversionContext endpointContext, XmlQualifiedName bindingQName) 573private ContractDescription GetOrImportContractDescription(XmlQualifiedName wsdlPortTypeQName, out bool wasExistingContractDescription) 642private bool TryFindExistingContract(XmlQualifiedName wsdlPortTypeQName, out ContractDescription existingContract) 644XmlQualifiedName contractQName = WsdlNamingHelper.GetContractName(wsdlPortTypeQName); 770XmlQualifiedName qName = GetUnhandledExtensionQName(ext, item); 807private XmlQualifiedName GetUnhandledExtensionQName(object extension, WsdlNS.NamedItem item) 1178internal static XmlQualifiedName GetBindingName(WsdlNS.Binding wsdlBinding) 1184internal static XmlQualifiedName GetBindingName(WsdlNS.Port wsdlPort) 1196internal static XmlQualifiedName GetContractName(XmlQualifiedName wsdlPortTypeQName) 1317XmlQualifiedName wsdlBindingQName = new XmlQualifiedName(wsdlBinding.Name, wsdlBinding.ServiceDescription.TargetNamespace); 1322static public string FindAdHocTransportPolicy(PolicyConversionContext policyContext, out XmlQualifiedName wsdlBindingQName) 1327static public string FindAdHocPolicy(PolicyConversionContext policyContext, string key, out XmlQualifiedName wsdlBindingQName) 1426private static void InsertPolicy(string key, string id, WsdlNS.ServiceDescription policyWsdl, string value, XmlQualifiedName wsdlBindingQName) 1442private static XmlElement CreatePolicyElement(string elementName, string value, XmlQualifiedName wsdlBindingQName) 1513XmlQualifiedName qName = WsdlExporter.WsdlNamingHelper.GetPortTypeQName(contract); 1629XmlQualifiedName bindingQName = new XmlQualifiedName(endpointContext.WsdlBinding.Name, endpointContext.WsdlBinding.ServiceDescription.TargetNamespace);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (5)
378XmlQualifiedName elementName; 512internal XmlMembersMapping ImportFaultElement(FaultDescription fault, out XmlQualifiedName elementName) 705private XmlQualifiedName _faultContractElementName; 709XmlQualifiedName faultContractElementName) 729internal XmlQualifiedName FaultContractElementName
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\XmlSerializerObjectSerializer.cs (1)
28internal XmlSerializerObjectSerializer(Type type, XmlQualifiedName qualifiedName, XmlSerializer xmlSerializer)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\ChannelProtectionRequirements.cs (2)
171foreach (XmlQualifiedName headerType in parts.HeaderTypes) 334XmlQualifiedName headerName = new XmlQualifiedName(header.Name, header.Namespace);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\MessagePartSpecification.cs (15)
14private List<XmlQualifiedName> _headerTypes; 19public ICollection<XmlQualifiedName> HeaderTypes 25_headerTypes = new List<XmlQualifiedName>(); 30return new ReadOnlyCollection<XmlQualifiedName>(_headerTypes); 100List<XmlQualifiedName> headerTypes = specification._headerTypes; 105_headerTypes = new List<XmlQualifiedName>(headerTypes.Count); 110XmlQualifiedName qname = headerTypes[i]; 123List<XmlQualifiedName> noDuplicates = new List<XmlQualifiedName>(_headerTypes.Count); 126XmlQualifiedName qname = _headerTypes[i]; 132XmlQualifiedName qname1 = noDuplicates[j]; 162public MessagePartSpecification(params XmlQualifiedName[] headerTypes) 168public MessagePartSpecification(bool isBodyIncluded, params XmlQualifiedName[] headerTypes) 173_headerTypes = new List<XmlQualifiedName>(headerTypes.Length); 200XmlQualifiedName qname = _headerTypes[i];
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\ScopedMessagePartSpecification.cs (1)
165foreach (XmlQualifiedName headerType in ChannelParts.HeaderTypes)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityPolicy.cs (3)
277foreach (XmlQualifiedName header in parts.HeaderTypes) 305foreach (XmlQualifiedName header in parts.HeaderTypes) 387public virtual XmlElement CreateWsspHeaderAssertion(XmlQualifiedName header)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\XmlHelper.cs (2)
33internal static XmlQualifiedName GetAttributeValueAsQName(XmlReader reader, string attributeName) 111internal static XmlQualifiedName GetValueAsQName(XmlReader reader, string value)
FrameworkFork\System.Web.Services\Services\Description\ServiceDescription.cs (17)
761private XmlQualifiedName _binding = XmlQualifiedName.Empty; 793public XmlQualifiedName Binding 1030private XmlQualifiedName _type = XmlQualifiedName.Empty; 1072public XmlQualifiedName Type 1076if ((object)_type == null) return XmlQualifiedName.Empty; 1089private XmlQualifiedName _message = XmlQualifiedName.Empty; 1111public XmlQualifiedName Message 1462private XmlQualifiedName _type = XmlQualifiedName.Empty; 1463private XmlQualifiedName _element = XmlQualifiedName.Empty; 1496public XmlQualifiedName Element 1507public XmlQualifiedName Type 1511if ((object)_type == null) return XmlQualifiedName.Empty;
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptions.cs (6)
107private Exception ItemNotFound(XmlQualifiedName name, string type) 116public Message GetMessage(XmlQualifiedName name) 133public PortType GetPortType(XmlQualifiedName name) 150public Service GetService(XmlQualifiedName name) 167public Binding GetBinding(XmlQualifiedName name) 180private ServiceDescription GetServiceDescription(XmlQualifiedName name)
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (390)
235WriteAttribute(@"binding", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@Binding))); 406WriteAttribute(@"type", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@Type))); 1217WriteAttribute(@"message", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@Message))); 1259WriteAttribute(@"message", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@Message))); 1300WriteAttribute(@"message", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@Message))); 1342WriteAttribute(@"message", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@Message))); 1942WriteAttribute(@"message", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@Message))); 2003WriteAttribute(@"message", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@Message))); 2064WriteAttribute(@"message", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@Message))); 2195WriteAttribute(@"element", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@Element))); 2196WriteAttribute(@"type", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@Type))); 2869WriteAttribute(@"ref", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@RefName))); 2870WriteAttribute(@"substitutionGroup", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@SubstitutionGroup))); 2871WriteAttribute(@"type", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@SchemaTypeName))); 3097WriteAttribute(@"refer", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@Refer))); 3209WriteAttribute(@"itemType", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@ItemTypeName))); 3248WriteAttribute(@"base", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@BaseTypeName))); 3859Microsoft.Xml.XmlQualifiedName[] a = (Microsoft.Xml.XmlQualifiedName[])o.@MemberTypes; 3865Microsoft.Xml.XmlQualifiedName ai = (Microsoft.Xml.XmlQualifiedName)a[i]; 4125WriteAttribute(@"ref", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@RefName))); 4126WriteAttribute(@"type", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@SchemaTypeName))); 4194WriteAttribute(@"ref", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@RefName))); 4234WriteAttribute(@"ref", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@RefName))); 4454WriteAttribute(@"base", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@BaseTypeName))); 4545WriteAttribute(@"base", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@BaseTypeName))); 4690WriteAttribute(@"base", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@BaseTypeName))); 4824WriteAttribute(@"base", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@BaseTypeName))); 5207Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 5212if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id3_ServiceDescription && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id2_Item)) 5216throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 5319Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 5324if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id14_Service && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id2_Item)) 5328throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 5401Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 5406if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id16_Port && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id2_Item)) 5410throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 5495Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 5500if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id21_Soap12AddressBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id20_Item)) 5504throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 5556Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 5561if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id24_SoapAddressBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id19_Item)) 5565throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 5617Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 5622if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id25_HttpAddressBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id18_Item)) 5626throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 5678Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 5683if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id26_Binding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id2_Item)) 5687throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 5777Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 5782if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id29_OperationBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id2_Item)) 5786throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 5881Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 5886if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id33_FaultBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id2_Item)) 5890throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 5966Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 5971if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id34_Soap12FaultBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id20_Item)) 5975throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 6052Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 6057if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id38_SoapFaultBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id19_Item)) 6061throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 6138Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 6143if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id39_OutputBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id2_Item)) 6147throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 6247Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 6252if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id48_Soap12HeaderBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id20_Item)) 6256throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 6336Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 6341if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id51_SoapHeaderFaultBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id20_Item)) 6345throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 6417Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 6422if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id52_Soap12BodyBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id20_Item)) 6426throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 6493Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 6498if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id54_SoapHeaderBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id19_Item)) 6502throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 6582Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 6587if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id51_SoapHeaderFaultBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id19_Item)) 6591throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 6663Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 6668if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id55_SoapBodyBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id19_Item)) 6672throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 6739Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 6744if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id56_MimeTextBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id45_Item)) 6748throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 6803Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 6808if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id58_MimeTextMatch && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id45_Item)) 6812throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 6897Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 6902if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id64_MimeMultipartRelatedBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id41_Item)) 6906throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 6961Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 6966if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id65_MimePart && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id41_Item)) 6970throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 7041Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 7046if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id66_MimeXmlBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id41_Item)) 7050throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 7102Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 7107if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id67_MimeContentBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id41_Item)) 7111throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 7168Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 7173if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id68_InputBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id2_Item)) 7177throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 7285Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 7290if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id71_HttpUrlReplacementBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id18_Item)) 7294throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 7341Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 7346if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id72_HttpUrlEncodedBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id18_Item)) 7350throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 7397Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 7402if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id73_Soap12OperationBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id20_Item)) 7406throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 7478Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 7483if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id77_SoapOperationBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id19_Item)) 7487throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 7554Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 7559if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id78_HttpOperationBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id18_Item)) 7563throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 7615Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 7620if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id79_Soap12Binding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id20_Item)) 7624throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 7681Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 7686if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id81_SoapBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id19_Item)) 7690throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 7747Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 7752if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id82_HttpBinding && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id18_Item)) 7756throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 7808Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 7813if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id84_PortType && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id2_Item)) 7817throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 7890Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 7895if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id85_Operation && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id2_Item)) 7899throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 7986Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 7991if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id87_OperationFault && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id2_Item)) 7995throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 8068Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 8073if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id88_OperationOutput && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id2_Item)) 8077throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 8150Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 8155if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id89_OperationInput && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id2_Item)) 8159throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 8232Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 8237if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id90_Message && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id2_Item)) 8241throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 8314Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 8319if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id91_MessagePart && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id2_Item)) 8323throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 8401Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 8406if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id93_Types && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id2_Item)) 8410throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 8478Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 8483if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id96_XmlSchema && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 8487throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 8626Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 8631if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id111_XmlSchemaAttributeGroup && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 8635throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 8722Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 8727if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id113_XmlSchemaAnyAttribute && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 8731throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 8809Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 8814if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id115_XmlSchemaAnnotation && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 8818throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 8890Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 8895if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id117_XmlSchemaAppInfo && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 8899throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 8963Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 8968if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id119_XmlSchemaDocumentation && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 8972throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 9052Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 9057if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id122_XmlSchemaAttributeGroupRef && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 9061throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 9134Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 9139if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id124_XmlSchemaAttribute && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 9143throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 9251Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 9256if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id128_XmlSchemaSimpleType && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 9260throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 9353Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 9358if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id133_XmlSchemaSimpleTypeUnion && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 9362throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 9371Microsoft.Xml.XmlQualifiedName[] a_5 = null; 9387a_5 = (Microsoft.Xml.XmlQualifiedName[])EnsureArrayIndex(a_5, ca_5, typeof(Microsoft.Xml.XmlQualifiedName)); a_5[ca_5++] = ToXmlQualifiedName(vals[i]); 9403o.@MemberTypes = (Microsoft.Xml.XmlQualifiedName[])ShrinkArray(a_5, ca_5, typeof(Microsoft.Xml.XmlQualifiedName), true); 9409o.@MemberTypes = (Microsoft.Xml.XmlQualifiedName[])ShrinkArray(a_5, ca_5, typeof(Microsoft.Xml.XmlQualifiedName), true); 9442o.@MemberTypes = (Microsoft.Xml.XmlQualifiedName[])ShrinkArray(a_5, ca_5, typeof(Microsoft.Xml.XmlQualifiedName), true); 9449Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 9454if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id135_XmlSchemaSimpleTypeRestriction && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 9458throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 9585Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 9590if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id148_XmlSchemaMinLengthFacet && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 9594throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 9672Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 9677if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id150_XmlSchemaMinExclusiveFacet && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 9681throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 9759Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 9764if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id151_XmlSchemaWhiteSpaceFacet && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 9768throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 9846Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 9851if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id152_XmlSchemaMaxExclusiveFacet && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 9855throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 9933Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 9938if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id153_XmlSchemaMaxInclusiveFacet && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 9942throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 10020Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 10025if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id154_XmlSchemaEnumerationFacet && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 10029throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 10107Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 10112if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id155_XmlSchemaPatternFacet && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 10116throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 10194Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 10199if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id156_XmlSchemaTotalDigitsFacet && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 10203throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 10281Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 10286if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id157_XmlSchemaLengthFacet && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 10290throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 10368Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 10373if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id158_XmlSchemaMaxLengthFacet && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 10377throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 10455Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 10460if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id159_XmlSchemaMinInclusiveFacet && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 10464throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 10542Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 10547if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id160_XmlSchemaFractionDigitsFacet && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 10551throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 10629Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 10634if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id161_XmlSchemaSimpleTypeList && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 10638throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 10764Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 10769if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id163_XmlSchemaElement && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 10773throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 10929Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 10934if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id173_XmlSchemaKeyref && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 10938throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 11026Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 11031if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id177_XmlSchemaXPath && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 11035throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 11108Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 11113if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id179_XmlSchemaUnique && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 11117throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 11200Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 11205if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id180_XmlSchemaKey && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 11209throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 11292Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 11297if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id181_XmlSchemaComplexType && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 11301throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 11438Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 11443if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id188_XmlSchemaAll && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 11447throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 11530Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 11535if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id189_XmlSchemaChoice && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 11539throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 11638Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 11643if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id191_XmlSchemaGroupRef && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 11647throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 11730Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 11735if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id192_XmlSchemaSequence && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 11739throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 11838Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 11843if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id193_XmlSchemaAny && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 11847throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 11935Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 11940if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id194_XmlSchemaSimpleContent && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 11944throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 12022Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 12027if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id196_Item && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 12031throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 12118Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 12123if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id197_Item && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 12127throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 12268Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 12273if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id198_XmlSchemaComplexContent && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 12277throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 12360Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 12365if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id199_Item && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 12369throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 12476Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 12481if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id200_Item && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 12485throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 12592Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 12597if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id201_XmlSchemaGroup && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 12601throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 12689Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 12694if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id202_XmlSchemaNotation && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 12698throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 12781Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 12786if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id205_XmlSchemaRedefine && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 12790throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 12879Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 12884if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id207_XmlSchemaImport && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 12888throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 12966Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 12971if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id208_XmlSchemaInclude && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id95_Item)) 12975throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType); 13048Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 13053if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id209_Import && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id2_Item)) 13057throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType);
FrameworkFork\System.Web.Services\Services\Description\SoapFormatExtensions.cs (6)
227private XmlQualifiedName _message = XmlQualifiedName.Empty; 245public XmlQualifiedName Message 295private XmlQualifiedName _message = XmlQualifiedName.Empty; 303public XmlQualifiedName Message
FrameworkFork\System.Web.Services\Services\Description\WebReferenceOptions.cs (4)
324Microsoft.Xml.XmlQualifiedName xsiType = checkType ? GetXsiType() : null; 329if (xsiType == null || ((object)((Microsoft.Xml.XmlQualifiedName)xsiType).Name == (object)_id1_webReferenceOptions && (object)((Microsoft.Xml.XmlQualifiedName)xsiType).Namespace == (object)_id2_Item)) 333throw CreateUnknownTypeException((Microsoft.Xml.XmlQualifiedName)xsiType);
ImportModule.cs (5)
377private readonly Dictionary<Binding, XmlQualifiedName> _bindingWsdlMapping = new Dictionary<Binding, XmlQualifiedName>(); 378private readonly Dictionary<XmlQualifiedName, WsdlNS.Port> _bindingPortMapping = new Dictionary<XmlQualifiedName, WsdlNS.Port>(); 393XmlQualifiedName wsdlBindingQName = new XmlQualifiedName(context.WsdlBinding.Name, context.WsdlBinding.ServiceDescription.TargetNamespace);