2002-04-28 Rodrigo Moya <rodrigo@ximian.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, reflecting the fact that, unlike the corresponding system types, SqlTypes can legally contain the value null.
14         /// </summary>
15         public interface INullable
16         {
17                 [MonoTODO]
18                 bool IsNull {
19                         get;
20                 }
21         }
22 }