27 references to EncodedTableName
System.Data (27)
fx\src\data\System\Data\DataViewManager.cs (1)
98
builder.AppendFormat(System.Globalization.CultureInfo.InvariantCulture, "<{0} Sort=\"{1}\" RowFilter=\"{2}\" RowStateFilter=\"{3}\"/>", dt.
EncodedTableName
, ds.Sort, ds.RowFilter, ds.RowStateFilter);
fx\src\data\System\Data\xmlsaver.cs (18)
631
node.SetAttribute(Keywords.REF, top[i].
EncodedTableName
);
633
node.SetAttribute(Keywords.REF, ((string)prefixes[top[i].Namespace])+':'+top[i].
EncodedTableName
);
643
node.SetAttribute(Keywords.REF, ((string)prefixes[top[i].Namespace])+':'+top[i].
EncodedTableName
);
977
root.SetAttribute(Keywords.MSD_PARENT, Keywords.MSDNS, rel.ParentKey.Table.
EncodedTableName
);
978
root.SetAttribute(Keywords.MSD_CHILD, Keywords.MSDNS, rel.ChildKey.Table.
EncodedTableName
);
1482
root.SetAttribute( Keywords.NAME, table.
EncodedTableName
);
1658
NestedTable.SetAttribute( Keywords.REF, table.
EncodedTableName
);
1662
NestedTable.SetAttribute( Keywords.REF, childTable.
EncodedTableName
);
1679
NestedTable.SetAttribute( Keywords.REF, ((string)prefixes[childTable.Namespace])+':'+childTable.
EncodedTableName
);
1742
selector.SetAttribute(Keywords.XSD_XPATH, ".//"+xpathprefix+table.
EncodedTableName
);
1806
selector.SetAttribute(Keywords.XSD_XPATH, ".//"+xpathprefix+ foreign.RelatedTable.
EncodedTableName
);
1868
selector.SetAttribute(Keywords.XSD_XPATH, ".//"+xpathprefix+table.
EncodedTableName
);
2113
_xmlw.WriteStartElement( prefix, row.Table.
EncodedTableName
, row.Table.Namespace);
2134
_xmlw.WriteStartElement( prefix, row.Table.
EncodedTableName
, row.Table.Namespace);
2182
_xmlw.WriteStartElement( tablePrefix, row.Table.
EncodedTableName
, row.Table.Namespace);
2447
XmlDataRowWriter(row,tempDT.
EncodedTableName
);
2510
XmlDataRowWriter(row, ((DataTable)_dTables[i]).
EncodedTableName
);
2673
XmlDataRowWriter(r,dr.ChildTable.
EncodedTableName
);
fx\src\data\System\Data\XMLSchema.cs (1)
785
if (((el.Name == null) && (el.RefName.Name == table.
EncodedTableName
&& el.RefName.Namespace == table.Namespace)) ||
fx\src\data\System\Data\XmlToDatasetMap.cs (4)
65
id.LocalName = table.
EncodedTableName
;
138
string tableLocalName = nameTable.Get(table.
EncodedTableName
);
159
string _tableLocalName = table.
EncodedTableName
; // Table name
428
lastTableSchemaInfo = (TableSchemaInfo)(fIgnoreNamespace ? tableSchemaMap[table.
EncodedTableName
] : tableSchemaMap[table]);
fx\src\data\System\NewXml\DataSetMappper.cs (2)
317
object idTable = GetIdentity( table.
EncodedTableName
, table.Namespace );
322
object idTable = GetIdentity( table.
EncodedTableName
, table.Namespace );
fx\src\data\System\NewXml\XmlDataDocument.cs (1)
1225
XmlBoundElement rowElement = new XmlBoundElement( string.Empty, table.
EncodedTableName
, table.Namespace, this );