4 writes to Prefix
System.Data.Common (4)
System\Data\DataView.cs (1)
1691dt.Prefix = _table.Prefix;
System\Data\XmlDataLoader.cs (1)
373table.Prefix = rowElement.Prefix;
System\Data\XMLSchema.cs (2)
1472table.Prefix = prefix; 1630table.Prefix = prefix;
10 references to Prefix
System.Data.Common (10)
System\Data\DataTable.cs (2)
353info.AddValue("DataTable.Prefix", Prefix); 5721(Prefix == reader.LocalName) &&
System\Data\DataView.cs (1)
1691dt.Prefix = _table.Prefix;
System\Data\xmlsaver.cs (5)
2441string prefix = (table.Namespace.Length != 0) ? table.Prefix : string.Empty; 2520string tablePrefix = (table.Namespace.Length != 0) ? table.Prefix : string.Empty; 2811string prefix = (_ds != null) ? ((_ds.Namespace.Length == 0) ? "" : _ds.Prefix) : ((_dt!.Namespace.Length == 0) ? "" : _dt.Prefix); 2856string prefix = (_ds != null) ? ((_ds.Namespace.Length == 0) ? "" : _ds.Prefix) : ((_dt!.Namespace.Length == 0) ? "" : _dt.Prefix); 2945string prefix = (row.Table.Namespace.Length == 0) ? "" : row.Table.Prefix;
System\Data\XMLSchema.cs (2)
847ds.Prefix = ds.Tables[0].Prefix; 1751childKey.Prefix = _tableChild.Prefix;