System.Data.Constraint.CanBeRemovedFromCollection C# (CSharp) Method

CanBeRemovedFromCollection() abstract private method

abstract private CanBeRemovedFromCollection ( ConstraintCollection constraint, bool fThrowException ) : bool
constraint ConstraintCollection
fThrowException bool
return bool
        internal abstract bool CanBeRemovedFromCollection(ConstraintCollection constraint, bool fThrowException);

Usage Example

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