22 references to CreateAttribute
dotnet-svcutil-lib (22)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXmlWriter.cs (3)
213XmlAttribute attr = _document.CreateAttribute(prefix, localName, ns); 255attr = _document.CreateAttribute(prefix, _document.strXmlns, _document.strReservedXmlns); 259attr = _document.CreateAttribute(_document.strXmlns, prefix, _document.strReservedXmlns);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlAttribute.cs (1)
56XmlAttribute attr = doc.CreateAttribute(Prefix, LocalName, NamespaceURI);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (4)
545return CreateAttribute(prefix, localName, namespaceURI); 846return CreateAttribute(prefix, localName, namespaceURI); 913newNode = CreateAttribute(node.Prefix, node.LocalName, node.NamespaceURI); 1063return CreateAttribute(prefix, name, namespaceURI);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlElement.cs (2)
351attr = OwnerDocument.CreateAttribute(string.Empty, localName, namespaceURI); 385attr = OwnerDocument.CreateAttribute(string.Empty, localName, namespaceURI);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (1)
264XmlAttribute attr = _doc.CreateAttribute(r.Prefix, r.LocalName, r.NamespaceURI);
FrameworkFork\Microsoft.Xml\Xml\schema\Parser.cs (3)
408attr = _dummyDocument.CreateAttribute(string.Empty, _xmlns, XmlReservedNs.NsXmlNs); 412attr = _dummyDocument.CreateAttribute(_xmlns, prefix, XmlReservedNs.NsXmlNs); 425XmlAttribute attr = _dummyDocument.CreateAttribute(r.Prefix, r.LocalName, r.NamespaceURI);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransactionFlowBindingElement.cs (2)
299XmlAttribute attr = doc.CreateAttribute(TransactionPolicyStrings.OptionalPrefix11, 308XmlAttribute attrLegacy = doc.CreateAttribute(TransactionPolicyStrings.OptionalPrefix10,
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlExporter.cs (4)
580attribute = WsdlExporter.XmlDoc.CreateAttribute(MetadataStrings.AddressingWsdl.Prefix, 586attribute = WsdlExporter.XmlDoc.CreateAttribute(MetadataStrings.AddressingMetadata.Prefix, 828XmlAttribute idAttribute = XmlDoc.CreateAttribute(MetadataStrings.Wsu.Prefix, 1147XmlAttribute newAttribute = XmlDoc.CreateAttribute(prefix, localName, ns);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlImporter.cs (2)
1401XmlAttribute attribute = XmlDoc.CreateAttribute(MetadataStrings.WSPolicy.Prefix, 1432XmlAttribute idAttribute = XmlDoc.CreateAttribute(MetadataStrings.Wsu.Prefix,