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/OleDbConnection.cs')
-rw-r--r--mcs/class/System.Data/System.Data.OleDb/OleDbConnection.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/mcs/class/System.Data/System.Data.OleDb/OleDbConnection.cs b/mcs/class/System.Data/System.Data.OleDb/OleDbConnection.cs
index c32d842061a..7ee3e9cceb8 100644
--- a/mcs/class/System.Data/System.Data.OleDb/OleDbConnection.cs
+++ b/mcs/class/System.Data/System.Data.OleDb/OleDbConnection.cs
@@ -71,9 +71,7 @@ namespace System.Data.OleDb
[DataCategory ("Data")]
[DefaultValue ("")]
-#if !NET_2_0
[DataSysDescriptionAttribute ("Information used to connect to a Data Source.")]
-#endif
[EditorAttribute ("Microsoft.VSDesigner.Data.ADO.Design.OleDbConnectionStringEditor, "+ Consts.AssemblyMicrosoft_VSDesigner, "System.Drawing.Design.UITypeEditor, "+ Consts.AssemblySystem_Drawing )]
[RecommendedAsConfigurableAttribute (true)]
[RefreshPropertiesAttribute (RefreshProperties.All)]
@@ -87,9 +85,7 @@ namespace System.Data.OleDb
}
[DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
-#if !NET_2_0
[DataSysDescriptionAttribute ("Current connection timeout value, 'Connect Timeout=X' in the ConnectionString.")]
-#endif
public int ConnectionTimeout {
get {
return connectionTimeout;
@@ -97,9 +93,7 @@ namespace System.Data.OleDb
}
[DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
-#if !NET_2_0
[DataSysDescriptionAttribute ("Current data source catalog value, 'Initial Catalog=X' in the connection string.")]
-#endif
public string Database {
get {
if (gdaConnection != IntPtr.Zero
@@ -112,9 +106,7 @@ namespace System.Data.OleDb
}
[DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
-#if !NET_2_0
[DataSysDescriptionAttribute ("Current data source, 'Data Source=X' in the connection string.")]
-#endif
public string DataSource {
get {
if (gdaConnection != IntPtr.Zero
@@ -127,9 +119,7 @@ namespace System.Data.OleDb
}
[DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
-#if !NET_2_0
[DataSysDescriptionAttribute ("Current OLE DB provider progid, 'Provider=X' in the connection string.")]
-#endif
public string Provider {
get {
if (gdaConnection != IntPtr.Zero
@@ -142,9 +132,7 @@ namespace System.Data.OleDb
}
[DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
-#if !NET_2_0
[DataSysDescriptionAttribute ("Version of the product accessed by the OLE DB Provider.")]
-#endif
[BrowsableAttribute (false)]
public string ServerVersion {
get {
@@ -158,9 +146,7 @@ namespace System.Data.OleDb
}
[DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
-#if !NET_2_0
[DataSysDescriptionAttribute ("The ConnectionState indicating whether the connection is open or closed.")]
-#endif
[BrowsableAttribute (false)]
public ConnectionState State
{
@@ -331,15 +317,11 @@ namespace System.Data.OleDb
#region Events and Delegates
-#if !NET_2_0
[DataSysDescription ("Event triggered when messages arrive from the DataSource.")]
-#endif
[DataCategory ("DataCategory_InfoMessage")]
public event OleDbInfoMessageEventHandler InfoMessage;
-#if !NET_2_0
[DataSysDescription ("Event triggered when the connection changes state.")]
-#endif
[DataCategory ("DataCategory_StateChange")]
public event StateChangeEventHandler StateChange;