AcceptRejectRule.cs 384 B

12345678910111213141516171819202122
  1. //
  2. // System.Data.AcceptRejectRule.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Determines the action that occurs when the AcceptChanges or RejectChanges method is invoked on a DataTable with a ForeignKeyConstraint.
  13. /// </summary>
  14. public enum AcceptRejectRule
  15. {
  16. Cascade,
  17. None
  18. }
  19. }