Added Debug.cs to the build.
[mono.git] / mcs / class / System.Data / IDataParameter.cs
1 //
2 // System.Data.IDataParameter.cs
3 //
4 // Author:
5 //   Christopher Podurgiel (cpodurgiel@msn.com)
6 //
7 // (C) Chris Podurgiel
8 //
9
10 namespace System.Data
11 {
12         /// <summary>
13         /// Represents a parameter to a Command object, and optionally, its mapping to DataSet columns; and is implemented by .NET data providers that access data sources.
14         /// </summary>
15         public interface IDataParameter
16         {
17                 
18                 DbType DbType
19                 {
20                         get
21                         {
22                         }
23                         set
24                         {
25                         }
26                 }
27
28                 ParameterDirection Direction
29                 {
30                         get
31                         {
32                         }
33                         set
34                         {
35                         }
36                 }
37
38                 bool IsNullable
39                 {
40                         get
41                         {
42                         }
43                 }
44
45                 string ParameterName
46                 {
47                         get
48                         {
49                         }
50                         set
51                         {
52                         }
53                 }
54
55                 string SourceColumn
56                 {
57                         get
58                         {
59                         }
60                         set
61                         {
62                         }
63                 }
64
65                 DataRowVersion SourceVersion
66                 {
67                         get
68                         {
69                         }
70                         set
71                         {
72                         }
73                 }
74
75
76         }
77 }