334 references to XmlQualifiedName
dotnet-svcutil-lib (334)
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\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\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 (2)
295_schemaInfo.DocTypeName = new XmlQualifiedName(_nameTable.Add(docTypeName.Substring(0, colonPos)), 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 (1)
430XmlQualifiedName qname = new XmlQualifiedName(prefix, localName);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaNames.cs (64)
190QnXmlNs = new XmlQualifiedName(nameTable.Add("xmlns"), NsXmlNs); 191QnDtDt = new XmlQualifiedName(nameTable.Add("dt"), NsDataType); 192QnXmlLang = new XmlQualifiedName(nameTable.Add("lang"), NsXml); 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 (6)
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); 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 (5)
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 (3)
41public XmlQualifiedName() : this(string.Empty, string.Empty) { } 47public XmlQualifiedName(string name) : this(name, 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);