1 instantiation of ConstraintCollection
System.Data (1)
fx\src\data\System\Data\DataTable.cs (1)
190this.constraintCollection = new ConstraintCollection(this);
17 references to ConstraintCollection
System.Data (17)
fx\src\data\System\Data\Constraint.cs (3)
32/// <para>The name of this constraint within the <see cref='System.Data.ConstraintCollection'/> 132internal abstract void CheckCanAddToCollection(ConstraintCollection constraint); 133internal abstract bool CanBeRemovedFromCollection(ConstraintCollection constraint, bool fThrowException);
fx\src\data\System\Data\ConstraintCollection.cs (2)
246/// <para>Occurs when the <see cref='System.Data.ConstraintCollection'/> is changed through additions or 584/// <para>Raises the <see cref='System.Data.ConstraintCollection.CollectionChanged'/> event.</para>
fx\src\data\System\Data\DataSet.cs (4)
1133ConstraintCollection constraints = tbls[i].Constraints; 3009ConstraintCollection cons = Tables[i].Constraints; 3041ConstraintCollection constraints = null; 3071ConstraintCollection constraints = null;
fx\src\data\System\Data\DataTable.cs (2)
55private readonly ConstraintCollection constraintCollection; 1101public ConstraintCollection Constraints {
fx\src\data\System\Data\ForeignKeyConstraint.cs (2)
174internal override void CheckCanAddToCollection(ConstraintCollection constraints) { 181internal override bool CanBeRemovedFromCollection(ConstraintCollection constraints, bool fThrowException) {
fx\src\data\System\Data\ProviderBase\SchemaMapping.cs (1)
927ConstraintCollection constraints = _dataTable.Constraints;
fx\src\data\System\Data\UniqueConstraint.cs (2)
176internal override void CheckCanAddToCollection(ConstraintCollection constraints) { 179internal override bool CanBeRemovedFromCollection(ConstraintCollection constraints, bool fThrowException) {
fx\src\data\System\Data\xmlsaver.cs (1)
1705ConstraintCollection constraints = table.Constraints;