2004-03-03 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.Data / System.Data / DataViewRowState.cs
1 //
2 // System.Data.DataViewRowState.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 version of data in 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 DataViewRowState
19         {
20                 None = 0,
21                 Unchanged = 2,
22                 Added = 4,
23                 Deleted = 8,
24                 ModifiedCurrent = 16,
25                 CurrentRows = 22,
26                 ModifiedOriginal = 32,
27                 OriginalRows = 42
28         }
29 }