6 references to Xml_DupAttributeName
System.Private.Xml (6)
System\Xml\BinaryXml\XmlBinaryReader.cs (2)
2705throw new XmlException(SR.Xml_DupAttributeName, _attributes[i].name.ToString()); 2730throw new XmlException(SR.Xml_DupAttributeName, _attributes[i].name.ToString());
System\Xml\Core\XmlTextReaderImpl.cs (2)
4996Throw(SR.Xml_DupAttributeName, _nodes[j].GetNameWPrefix(_nameTable), _nodes[j].LineNo, _nodes[j].LinePos); 5016Throw(SR.Xml_DupAttributeName, attr2.GetNameWPrefix(_nameTable), attr2.LineNo, attr2.LinePos);
System\Xml\Core\XmlWellFormedWriter.cs (1)
1837return new XmlException(SR.Xml_DupAttributeName, attr);
System\Xml\Dom\DocumentXmlWriter.cs (1)
443throw new XmlException(SR.Xml_DupAttributeName, attr.Prefix.Length == 0 ? attr.LocalName : $"{attr.Prefix}:{attr.LocalName}");