2002-05-07 Tim Coleman <tim@timcoleman.com>
[mono.git] / mcs / class / System.Data / System.Data.SqlTypes / INullable.cs
1 //
2 // System.Data.SqlTypes.INullable
3 //
4 // Author:
5 //   Rodrigo Moya (rodrigo@ximian.com)
6 //
7 // (C) Ximian, Inc.
8 //
9
10 namespace System.Data.SqlTypes
11 {
12         /// <summary>
13         /// All of the System.Data.SqlTypes objects and structures implement the INullable interface, 
14         /// reflecting the fact that, unlike the corresponding system types, SqlTypes can legally contain the value null.
15         /// </summary>
16         public interface INullable
17         {
18                 bool IsNull {
19                         get;
20                 }
21         }
22 }