4 writes to Prefix
System.Data.Common (4)
System\Data\DataView.cs (1)
1691dt.Prefix = _table.Prefix;
System\Data\XmlDataLoader.cs (1)
371table.Prefix = rowElement.Prefix;
System\Data\XMLSchema.cs (2)
1465table.Prefix = prefix; 1622table.Prefix = prefix;
10 references to Prefix
System.Data.Common (10)
System\Data\DataTable.cs (2)
348info.AddValue("DataTable.Prefix", Prefix); 5688(Prefix == reader.LocalName) &&
System\Data\DataView.cs (1)
1691dt.Prefix = _table.Prefix;
System\Data\xmlsaver.cs (5)
2428string prefix = (table.Namespace.Length != 0) ? table.Prefix : string.Empty; 2506string tablePrefix = (table.Namespace.Length != 0) ? table.Prefix : string.Empty; 2795string prefix = (_ds != null) ? ((_ds.Namespace.Length == 0) ? "" : _ds.Prefix) : ((_dt!.Namespace.Length == 0) ? "" : _dt.Prefix); 2839string prefix = (_ds != null) ? ((_ds.Namespace.Length == 0) ? "" : _ds.Prefix) : ((_dt!.Namespace.Length == 0) ? "" : _dt.Prefix); 2927string prefix = (row.Table.Namespace.Length == 0) ? "" : row.Table.Prefix;
System\Data\XMLSchema.cs (2)
845ds.Prefix = ds.Tables[0].Prefix; 1743childKey.Prefix = _tableChild.Prefix;