Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Data/System.Data.OleDb/OleDbParameter.cs')
-rw-r--r--mcs/class/System.Data/System.Data.OleDb/OleDbParameter.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/mcs/class/System.Data/System.Data.OleDb/OleDbParameter.cs b/mcs/class/System.Data/System.Data.OleDb/OleDbParameter.cs
index 4ea1ff07675..360212695ab 100644
--- a/mcs/class/System.Data/System.Data.OleDb/OleDbParameter.cs
+++ b/mcs/class/System.Data/System.Data.OleDb/OleDbParameter.cs
@@ -119,9 +119,7 @@ namespace System.Data.OleDb
#region Properties
[BrowsableAttribute (false)]
-#if !NET_2_0
[DataSysDescriptionAttribute ("The parameter generic type.")]
-#endif
[RefreshPropertiesAttribute (RefreshProperties.All)]
[DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
[DataCategory ("DataCategory_Data")]
@@ -133,9 +131,7 @@ namespace System.Data.OleDb
}
}
-#if !NET_2_0
[DataSysDescriptionAttribute ("Input, output, or bidirectional parameter.")]
-#endif
[DefaultValue (ParameterDirection.Input)]
[DataCategory ("DataCategory_Data")]
public ParameterDirection Direction {
@@ -144,9 +140,7 @@ namespace System.Data.OleDb
}
[BrowsableAttribute (false)]
-#if !NET_2_0
[DataSysDescriptionAttribute ("a design-time property used for strongly typed code-generation.")]
-#endif
[DesignOnlyAttribute (true)]
[EditorBrowsableAttribute (EditorBrowsableState.Advanced)]
[DefaultValue (false)]
@@ -156,9 +150,7 @@ namespace System.Data.OleDb
}
[DefaultValue (OleDbType.VarWChar)]
-#if !NET_2_0
[DataSysDescriptionAttribute ("The parameter native type.")]
-#endif
[RefreshPropertiesAttribute (RefreshProperties.All)]
[DataCategory ("DataCategory_Data")]
public OleDbType OleDbType {
@@ -170,18 +162,14 @@ namespace System.Data.OleDb
}
[DefaultValue ("")]
-#if !NET_2_0
[DataSysDescriptionAttribute ("Name of the parameter.")]
-#endif
public string ParameterName {
get { return name; }
set { name = value; }
}
[DefaultValue (0)]
-#if !NET_2_0
[DataSysDescriptionAttribute ("For decimal, numeric, varnumeric DBTypes.")]
-#endif
[DataCategory ("DataCategory_Data")]
public byte Precision {
get { return precision; }
@@ -189,9 +177,7 @@ namespace System.Data.OleDb
}
[DefaultValue (0)]
-#if !NET_2_0
[DataSysDescriptionAttribute ("For decimal, numeric, varnumeric DBTypes.")]
-#endif
[DataCategory ("DataCategory_Data")]
public byte Scale {
get { return scale; }
@@ -200,9 +186,7 @@ namespace System.Data.OleDb
[DefaultValue (0)]
-#if !NET_2_0
[DataSysDescriptionAttribute ("Size of variable length data types (string & arrays).")]
-#endif
[DataCategory ("DataCategory_Data")]
public int Size {
get { return size; }
@@ -210,9 +194,7 @@ namespace System.Data.OleDb
}
[DefaultValue ("")]
-#if !NET_2_0
[DataSysDescriptionAttribute ("When used by a DataAdapter.Update, the source column name that is used to find the DataSetColumn name in the ColumnMappings. This is to copy a value between the parameter and a datarow.")]
-#endif
[DataCategory ("DataCategory_Data")]
public string SourceColumn {
get { return sourceColumn; }
@@ -220,9 +202,7 @@ namespace System.Data.OleDb
}
[DefaultValue (DataRowVersion.Current)]
-#if !NET_2_0
[DataSysDescriptionAttribute ("When used by a DataAdapter.Update (UpdateCommand only), the version of the DataRow value that is used to update the data source.")]
-#endif
[DataCategory ("DataCategory_Data")]
public DataRowVersion SourceVersion {
get { return sourceVersion; }
@@ -230,9 +210,7 @@ namespace System.Data.OleDb
}
[DefaultValue (null)]
-#if !NET_2_0
[DataSysDescriptionAttribute ("Value of the parameter.")]
-#endif
[TypeConverter (typeof (StringConverter))]
[DataCategory ("DataCategory_Data")]
public object Value {