2002-10-25 Tim Coleman (tim@timcoleman.com)
[mono.git] / mcs / class / System.Data / System.Data / DataRowAction.cs
1 //
2 // System.Data.DataRowAction.cs
3 //
4 // Author:
5 //   Christopher Podurgiel (cpodurgiel@msn.com)
6 //
7 // (C) Chris Podurgiel
8 //
9
10 namespace System.Data
11 {
12         /// <summary>
13         /// Describes the action taken on a DataRow.
14         /// This enumeration has a FlagsAttribute that allows a bitwise combination of its member values.
15         /// </summary>
16         [Flags]
17         [Serializable]
18         public enum DataRowAction
19         {
20                 Nothing = 0,
21                 Delete = 1,
22                 Change = 2,
23                 Rollback = 4,
24                 Commit = 8,
25                 Add = 16
26         }
27
28 }