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