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)
1174dt._tableNamespace = tbls[i].Namespace; // hardcode the namespace for a second to not mess up 1232ds.Tables[i]._tableNamespace = tbls[i]._tableNamespace; // undo the hardcoding of the namespace
System\Data\DataTable.cs (6)
429_tableNamespace = info.GetString("DataTable.Namespace"); 1927_tableNamespace = value; 2405clone._tableNamespace = _tableNamespace; 5442_tableNamespace = tablenamespace; 5609_tableNamespace = tablenamespace; 6557_tableNamespace = tempTable.Namespace;
System\Data\XMLSchema.cs (3)
821childRelations[j].ChildTable._tableNamespace = null; 824dt._tableNamespace = null; 1681_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)
793if (dt._tableNamespace != null) 1232ds.Tables[i]._tableNamespace = tbls[i]._tableNamespace; // undo the hardcoding of the namespace
System\Data\DataTable.cs (11)
1865if (rel.ParentTable._tableNamespace != null) 1867return rel.ParentTable._tableNamespace; // if parent table has a non-null NS, return it 1903get { return _tableNamespace ?? GetInheritedNamespace(new List<DataTable>()); } 1909if (value != _tableNamespace) 1935internal bool IsNamespaceInherited() => null == _tableNamespace; 1941if ((rel.Nested) && (rel.ChildTable != this) && (rel.ChildTable._tableNamespace == null)) 2014private bool ShouldSerializeNamespace() => _tableNamespace != null; 2405clone._tableNamespace = _tableNamespace; 5415string? tablenamespace = _tableNamespace; 5581string? tablenamespace = _tableNamespace; //SQL BU Defect Tracking 286968 6554if (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