* DataColumn.cs: In Expression setter, set the expression member even if
[mono.git] / mcs / class / System.Data / System.Data / KeyRestrictionBehavior.cs
1 //
2 // System.Data.KeyRestrictionBehavior
3 //
4 // Author:
5 //     Tim Coleman <tim@timcoleman.com>
6 //
7 // Copyright (C) Tim Coleman, 2003
8 //
9
10 #if NET_1_1
11
12 namespace System.Data {
13         public enum KeyRestrictionBehavior
14         {
15                 AllowOnly,
16                 PreventUsage
17         }
18 }
19
20 #endif