OnRemovedTable() private method

private OnRemovedTable ( DataTable table ) : void
table DataTable
return void
Exemplo n.º 1
0
 /// <summary>
 /// Does verification on the table and it's name, and clears the table's dataSet pointer.
 /// An ArgumentNullException is thrown if this table is null.  An ArgumentException is thrown
 /// if this table doesn't belong to this collection or if this table is part of a relationship.
 /// </summary>
 private void BaseRemove(DataTable table)
 {
     if (CanRemove(table, true))
     {
         UnregisterName(table.TableName);
         table.SetDataSet(null);
     }
     _list.Remove(table);
     _dataSet.OnRemovedTable(table);
 }
Exemplo n.º 2
0
 /// <devdoc>
 /// Does verification on the table and it's name, and clears the table's dataSet pointer.
 /// An ArgumentNullException is thrown if this table is null.  An ArgumentException is thrown
 /// if this table doesn't belong to this collection or if this table is part of a relationship.
 /// </devdoc>
 private void BaseRemove(DataTable table)
 {
     if (CanRemove(table, true))
     {
         UnregisterName(table.TableName);
         table.SetDataSet(null);
         //Remove dataSet from constriants
         foreach (Constraint constr in table.Constraints)
         {
             constr.SetDataSet(null);
         }
     }
     _list.Remove(table);
     dataSet.OnRemovedTable(table);
 }