2002-08-08 Franklin Wise <gracenote@earthlink.net>
[mono.git] / mcs / class / System.Data / System.Data.SqlTypes / SqlCompareOptions.cs
1 //
2 // System.Data.SqlTypes.SqlCompareOptions.cs
3 //
4 // Author:
5 //   Rodrigo Moya (rodrigo@ximian.com)
6 //   Daniel Morgan (danmorg@sc.rr.com)
7 //
8 // (C) Ximian, Inc. 2002
9 //
10
11 namespace System.Data.SqlTypes
12 {
13         /// <summary>
14         /// Specifies the compare option values for a SqlString structure.
15         /// </summary>
16         [Flags]
17         [Serializable]
18         public enum SqlCompareOptions {
19                 BinarySort = 0x8000,
20                 IgnoreCase = 0x1,
21                 IgnoreKanaType = 0x8,
22                 IgnoreNonSpace = 0x2,
23                 IgnoreWidth = 0x10,
24                 None = 0
25         }
26
27 }
28
29