// // System.Data.AcceptRejectRule.cs // // Author: // Christopher Podurgiel (cpodurgiel@msn.com) // // (C) Chris Podurgiel // namespace System.Data { /// /// Determines the action that occurs when /// the AcceptChanges or RejectChanges method /// is invoked on a DataTable with a ForeignKeyConstraint. /// [Serializable] public enum AcceptRejectRule { Cascade = 1, None = 0 } }