| 12345678910111213141516171819202122 |
- //
- // System.Data.AcceptRejectRule.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- namespace System.Data
- {
-
- /// <summary>
- /// Determines the action that occurs when the AcceptChanges or RejectChanges method is invoked on a DataTable with a ForeignKeyConstraint.
- /// </summary>
- public enum AcceptRejectRule
- {
- Cascade,
- None
- }
- }
|