7 references to Prefix
System.Data.Common (7)
System\Xml\DataPointer.cs (1)
481string prefix = Prefix;
System\Xml\XmlBoundElement.cs (4)
269w.WriteStartElement(dp.Prefix, dp.LocalName, dp.NamespaceURI); 277if (dp.Prefix == "xmlns" && dp.LocalName == XmlDataDocument.XSI) 308w.WriteStartElement(dp.Prefix, dp.LocalName, dp.NamespaceURI); 354w.WriteStartAttribute(dp.Prefix, dp.LocalName, dp.NamespaceURI);
System\Xml\XmlDataDocument.cs (2)
1072XmlNodeType.Element => CreateElement(dp.Prefix, dp.LocalName, dp.NamespaceURI), 1073XmlNodeType.Attribute => CreateAttribute(dp.Prefix, dp.LocalName, dp.NamespaceURI),