Base:
property
Prefix
System.Xml.XmlNode.Prefix
5 writes to Prefix
System.Data (5)
fx\src\data\System\Data\DataSet.cs (3)
1599attr.Prefix = reader.Prefix; 1966attr.Prefix = reader.Prefix; 2415attr.Prefix = reader.Prefix;
fx\src\data\System\Data\DataTable.cs (2)
5220attr.Prefix = reader.Prefix; 5438attr.Prefix = reader.Prefix;
32 references to Prefix
System.Data (1)
fx\src\data\System\Data\XMLSchema.cs (1)
2429attrib.Prefix == Keywords.MSD &&
System.Xml (31)
System\Xml\Dom\DocumentSchemaValidator.cs (6)
173if (attr.Prefix.Length == 0) { 268attr.XmlName = document.AddAttrXmlName(attr.Prefix, attr.LocalName, attr.NamespaceURI, attributeSchemaInfo); 327nsManager.AddNamespace(attr.Prefix.Length == 0 ? string.Empty : attr.LocalName, attr.Value); 365attr.XmlName = document.AddAttrXmlName(attr.Prefix, attr.LocalName, attr.NamespaceURI, attributeSchemaInfo); 387attr.XmlName = document.AddAttrXmlName(attr.Prefix, attr.LocalName, attr.NamespaceURI, attributeSchemaInfo); 629nsManager.AddNamespace(attr.Prefix.Length == 0 ? string.Empty : attr.LocalName, attr.Value);
System\Xml\Dom\DocumentXmlWriter.cs (2)
367throw new XmlException(Res.Xml_DupAttributeName, attr.Prefix.Length == 0 ? attr.LocalName : string.Concat(attr.Prefix, ":", attr.LocalName));
System\Xml\Dom\DocumentXPathNavigator.cs (1)
1525string prefix = attribute.Prefix.Length == 0 ? string.Empty : attribute.LocalName;
System\Xml\Dom\XmlAttribute.cs (3)
51XmlAttribute attr = doc.CreateAttribute( Prefix, LocalName, NamespaceURI ); 124return ownerElement.Attributes.PrepareParentInElementIdAttrMap(Prefix, LocalName); 287w.WriteStartAttribute( Prefix, LocalName, NamespaceURI );
System\Xml\Dom\XmlLoader.cs (8)
233attr.XmlName = doc.AddAttrXmlName(attr.Prefix, attr.LocalName, attr.NamespaceURI, schemaInfo); 270attr.XmlName = doc.AddAttrXmlName(attr.Prefix, attr.LocalName, attr.NamespaceURI, schemaInfo); 616if ( attr.Prefix == doc.strXmlns && prefixes.Contains( attr.LocalName ) == false ) { 621else if ( !bHasDefXmlnsAttr && attr.Prefix.Length == 0 && attr.LocalName == doc.strXmlns ) { 626else if ( spaceMode == XmlSpace.None && attr.Prefix == doc.strXml && attr.LocalName == doc.strSpace ) { 633else if ( lang == null && attr.Prefix == doc.strXml && attr.LocalName == doc.strLang ) { 709if ( attr.Prefix == doc.strXmlns ) { 723else if ( attr.Prefix.Length == 0 && attr.LocalName == doc.strXmlns ) {
System\Xml\Dom\XmlNode.cs (6)
931if (attr.Prefix.Length == 0) { 941if (Ref.Equal(attr.Prefix, doc.strXmlns)) { 946else if (Ref.Equal(attr.Prefix, prefix)) { 995if (attr.Prefix.Length == 0) { 1002else if (Ref.Equal(attr.Prefix, doc.strXmlns)) { 1008return attr.Prefix; // found prefix:attr
System\Xml\Dom\XmlNodeReader.cs (4)
814if ( a.Prefix.Length == 0 && a.LocalName == "xmlns" ) { 819else if ( a.Prefix == "xmlns" ) { 852if ( a.LocalName == "xmlns" && a.Prefix.Length == 0 ) { 857else if ( a.Prefix == "xmlns" ) {
System\Xml\Dom\XmlUnspecifiedAttribute.cs (1)
29XmlUnspecifiedAttribute attr = (XmlUnspecifiedAttribute)doc.CreateDefaultAttribute(Prefix, LocalName, NamespaceURI);