7 references to Prefix
System.Data.Common (7)
System\Xml\DataPointer.cs (1)
481string prefix = Prefix;
System\Xml\XmlBoundElement.cs (4)
298w.WriteStartElement(dp.Prefix, dp.LocalName, dp.NamespaceURI); 306if (dp.Prefix == "xmlns" && dp.LocalName == XmlDataDocument.XSI) 338w.WriteStartElement(dp.Prefix, dp.LocalName, dp.NamespaceURI); 386w.WriteStartAttribute(dp.Prefix, dp.LocalName, dp.NamespaceURI);
System\Xml\XmlDataDocument.cs (2)
1098XmlNodeType.Element => CreateElement(dp.Prefix, dp.LocalName, dp.NamespaceURI), 1099XmlNodeType.Attribute => CreateAttribute(dp.Prefix, dp.LocalName, dp.NamespaceURI),