2004-03-29 Umadevi S (sumadevi@novell.com)
[mono.git] / mcs / class / System.Data / System.Data / PropertyAttributes.cs
1 //
2 // System.Data.PropertyAttributes.cs
3 //
4 // Author:
5 //   Christopher Podurgiel (cpodurgiel@msn.com)
6 //
7 // (C) Chris Podurgiel
8 //
9
10 using System;
11
12 namespace System.Data
13 {
14         /// <summary>
15         /// Specifies the attributes of a property.
16         /// This enumeration has a FlagsAttribute that allows a bitwise combination of its member values
17         /// </summary>
18         [Flags]
19         [Serializable]
20         public enum PropertyAttributes
21         {
22                 NotSupported = 0,
23                 Required = 1,
24                 Optional = 2,
25                 Read = 512,
26                 Write = 1024
27         }
28 }