43 references to EncodedColumnName
System.Data (43)
fx\src\data\System\Data\XmlDataLoader.cs (1)
1143
xmlAttrib = new XmlRootAttribute(column.
EncodedColumnName
);
fx\src\data\System\Data\XMLDiffLoader.cs (3)
309
value = row.GetAttribute("hidden"+col.
EncodedColumnName
, Keywords.MSDNS);
312
value = row.GetAttribute(col.
EncodedColumnName
, col.Namespace);
375
xmlAttrib = new XmlRootAttribute(column.
EncodedColumnName
);
fx\src\data\System\Data\xmlsaver.cs (22)
988
string text = key[0].
EncodedColumnName
;
994
builder.Append(Keywords.MSD_KEYFIELDSEP).Append(key[i].
EncodedColumnName
);
1001
text = key[0].
EncodedColumnName
;
1011
builder.Append(Keywords.MSD_KEYFIELDSEP).Append(key[i].
EncodedColumnName
);
1210
root.SetAttribute( Keywords.NAME, col.
EncodedColumnName
);
1276
if (FindTypeNode(schNode, col.
EncodedColumnName
) == null)
1279
root.SetAttribute( Keywords.REF, prefixes[ col.Namespace]+":"+ col.
EncodedColumnName
);
1761
encodedName.Append(fields[k].
EncodedColumnName
);
1764
encodedName.Append(xpathprefix).Append(fields[k].
EncodedColumnName
);
1820
encodedName.Append(fields[k].
EncodedColumnName
);
1823
encodedName.Append(xpathprefix).Append(fields[k].
EncodedColumnName
);
1894
encodedName.Append(fields[k].
EncodedColumnName
);
1897
encodedName.Append(xpathprefix).Append(fields[k].
EncodedColumnName
);
2141
_xmlw.WriteStartElement( columnPrefix, column.
EncodedColumnName
, column.Namespace);
2220
_xmlw.WriteAttributeString(colPrefix, col.
EncodedColumnName
, col.Namespace, value);
2224
_xmlw.WriteAttributeString(Keywords.MSD, "hidden"+col.
EncodedColumnName
, Keywords.MSDNS, value);
2237
_xmlw.WriteStartElement( colPrefix, col.
EncodedColumnName
, col.Namespace);
2266
XmlRootAttribute xmlAttrib = new XmlRootAttribute(col.
EncodedColumnName
);
2574
_xmlw.WriteAttributeString(colPrefix, col.
EncodedColumnName
, col.Namespace, col.ConvertObjectToXml(value));
2587
_xmlw.WriteAttributeString(Keywords.MSD, "hidden"+col.
EncodedColumnName
, Keywords.MSDNS, col.ConvertObjectToXml(value));
2608
_xmlw.WriteStartElement(colPrefix, col.
EncodedColumnName
, col.Namespace);
2638
XmlRootAttribute xmlAttrib = new XmlRootAttribute(col.
EncodedColumnName
);
fx\src\data\System\Data\XmlToDatasetMap.cs (1)
190
string columnLocalName = nameTable.Get(col.
EncodedColumnName
);
fx\src\data\System\NewXml\DataPointer.cs (3)
348
return doc.NameTable.Add(column.
EncodedColumnName
);
535
n = node.Attributes.GetNamedItem( column.
EncodedColumnName
, column.Namespace );
539
if (n.LocalName == column.
EncodedColumnName
&& n.NamespaceURI == column.Namespace)
fx\src\data\System\NewXml\DataSetMappper.cs (1)
323
object idColumn = GetIdentity( col.
EncodedColumnName
, col.Namespace );
fx\src\data\System\NewXml\XmlDataDocument.cs (6)
619
node.SetAttribute( col.
EncodedColumnName
, col.Namespace, col.ConvertObjectToXml( value ) );
624
newNode = new XmlBoundElement( string.Empty, col.
EncodedColumnName
, col.Namespace, this );
1334
if ( attr.LocalName == col.
EncodedColumnName
&& attr.NamespaceURI == col.Namespace ) {
1348
rowElement.SetAttribute( col.
EncodedColumnName
, col.Namespace, col.ConvertObjectToXml( value ) );
1365
if ( e.LocalName == col.
EncodedColumnName
&& e.NamespaceURI == col.Namespace ) {
1390
XmlElement newElem = new XmlBoundElement( string.Empty, col.
EncodedColumnName
, col.Namespace, this );
fx\src\data\System\NewXml\XPathNodePointer.cs (6)
195
return _doc.NameTable.Add(_column.
EncodedColumnName
);
225
return _doc.NameTable.Add(_column.
EncodedColumnName
);
368
if ( col.Prefix == "xml" && col.
EncodedColumnName
== "lang" ) {
560
if (c.
EncodedColumnName
== localName && c.Namespace == namespaceURI) {
1164
n = _node.Attributes.GetNamedItem( _column.
EncodedColumnName
, _column.Namespace );
1168
if (n.LocalName == _column.
EncodedColumnName
&& n.NamespaceURI == _column.Namespace)