Restoring original mono version.
authorBoris Kirzner <borisk@mono-cvs.ximian.com>
Mon, 9 May 2005 08:06:12 +0000 (08:06 -0000)
committerBoris Kirzner <borisk@mono-cvs.ximian.com>
Mon, 9 May 2005 08:06:12 +0000 (08:06 -0000)
svn path=/branches/Mainsoft.System.Data/mcs/; revision=44249

mcs/class/System.Data/System.Data/IDataParameter.cs

index e842daa239814fcdafb4481392b6724bbe79e576..82941b00789d9a5a2c321fc6e235bc9de30988f3 100644 (file)
@@ -38,17 +38,22 @@ namespace System.Data
        /// 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.
        /// </summary>
        public interface IDataParameter
-       {       
+       {
+               
                DbType DbType{get;set;}
+
                ParameterDirection Direction{get;set;}
+
+               bool IsNullable{get;}
+
+               string ParameterName{get;set;}
+
                string SourceColumn{get;set;}
+
                DataRowVersion SourceVersion {get;set;}
+
                object Value {get;set;}
-               string ParameterName{get;set;}
 
-#if NET_2_0
-               bool IsNullable{get;}   
-#endif
 
        }
 }
\ No newline at end of file