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