System.Data.DataRelationCollection.DataTableRelationCollection.DataTableRelationCollection C# (CSharp) Method

DataTableRelationCollection() private method

private DataTableRelationCollection ( DataTable table, bool fParentCollection ) : System.Collections
table DataTable
fParentCollection bool
return System.Collections
            internal DataTableRelationCollection(DataTable table, bool fParentCollection)
            {
                if (table == null)
                {
                    throw ExceptionBuilder.RelationTableNull();
                }
                _table = table;
                _fParentCollection = fParentCollection;
                _relations = new ArrayList();
            }