System.Data.Constraint.CanBeRemovedFromCollection C# (CSharp) Méthode

CanBeRemovedFromCollection() abstract private méthode

abstract private CanBeRemovedFromCollection ( ConstraintCollection constraint, bool fThrowException ) : bool
constraint ConstraintCollection
fThrowException bool
Résultat bool
        internal abstract bool CanBeRemovedFromCollection(ConstraintCollection constraint, bool fThrowException);

Usage Example

 internal bool CanRemove(Constraint constraint, bool fThrowException)
 {
     return(constraint.CanBeRemovedFromCollection(this, fThrowException));
 }
All Usage Examples Of System.Data.Constraint::CanBeRemovedFromCollection