3 writes to Prefix
System.Data.Common (3)
System\Data\DataSet.cs (1)
1165ds.Prefix = Prefix;
System\Data\XMLSchema.cs (2)
847ds.Prefix = ds.Tables[0].Prefix; 2620_ds.Prefix = GetPrefix(_ds.Namespace);
5 references to Prefix
System.Data.Common (5)
System\Data\DataSet.cs (3)
512info.AddValue("DataSet.Prefix", Prefix); 835RaisePropertyChanging(nameof(Prefix)); 1165ds.Prefix = Prefix;
System\Data\xmlsaver.cs (2)
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);