13 writes to _tableNamespace
System.Data.Common (13)
System\Data\DataRelation.cs (1)
569ChildTable._tableNamespace = null; // if we dont throw, then let it inherit the Namespace
System\Data\DataSet.cs (2)
1164dt._tableNamespace = tbls[i].Namespace; // hardcode the namespace for a second to not mess up 1222ds.Tables[i]._tableNamespace = tbls[i]._tableNamespace; // undo the hardcoding of the namespace
System\Data\DataTable.cs (6)
424_tableNamespace = info.GetString("DataTable.Namespace"); 1922_tableNamespace = value; 2400clone._tableNamespace = _tableNamespace; 5423_tableNamespace = tablenamespace; 5582_tableNamespace = tablenamespace; 6515_tableNamespace = tempTable.Namespace;
System\Data\XMLSchema.cs (3)
819childRelations[j].ChildTable._tableNamespace = null; 822dt._tableNamespace = null; 1673_tableChild._tableNamespace = null;
System\Data\XmlToDatasetMap.cs (1)
194table._tableNamespace = tableNamespace;
17 references to _tableNamespace
System.Data.Common (17)
System\Data\DataRelation.cs (2)
565if (CheckMultipleNested && ChildTable._tableNamespace != null && ChildTable._tableNamespace.Length == 0)
System\Data\DataSet.cs (2)
783if (dt._tableNamespace != null) 1222ds.Tables[i]._tableNamespace = tbls[i]._tableNamespace; // undo the hardcoding of the namespace
System\Data\DataTable.cs (11)
1860if (rel.ParentTable._tableNamespace != null) 1862return rel.ParentTable._tableNamespace; // if parent table has a non-null NS, return it 1898get { return _tableNamespace ?? GetInheritedNamespace(new List<DataTable>()); } 1904if (value != _tableNamespace) 1930internal bool IsNamespaceInherited() => null == _tableNamespace; 1936if ((rel.Nested) && (rel.ChildTable != this) && (rel.ChildTable._tableNamespace == null)) 2009private bool ShouldSerializeNamespace() => _tableNamespace != null; 2400clone._tableNamespace = _tableNamespace; 5396string? tablenamespace = _tableNamespace; 5554string? tablenamespace = _tableNamespace; //SQL BU Defect Tracking 286968 6512if (DataSet == null && _tableNamespace == null)
System\Data\DataTableCollection.cs (1)
520string? ns = checkProperty ? table.Namespace : table._tableNamespace;
System\Data\XmlToDatasetMap.cs (1)
193if (table._tableNamespace != null) // Update table namespace