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.Common/DbCommandBuilder.cs')
-rw-r--r--mcs/class/System.Data/System.Data.Common/DbCommandBuilder.cs14
1 files changed, 6 insertions, 8 deletions
diff --git a/mcs/class/System.Data/System.Data.Common/DbCommandBuilder.cs b/mcs/class/System.Data/System.Data.Common/DbCommandBuilder.cs
index 6ca52ca58a0..4a8b3a5bd34 100644
--- a/mcs/class/System.Data/System.Data.Common/DbCommandBuilder.cs
+++ b/mcs/class/System.Data/System.Data.Common/DbCommandBuilder.cs
@@ -50,50 +50,48 @@ namespace System.Data.Common {
#region Properties
[MonoTODO]
- [DefaultValue (CatalogLocation.Start)]
public virtual CatalogLocation CatalogLocation {
get { throw new NotImplementedException (); }
set { throw new NotImplementedException (); }
}
[MonoTODO]
- [DefaultValue (".")]
public virtual string CatalogSeparator {
get { throw new NotImplementedException (); }
set { throw new NotImplementedException (); }
}
[MonoTODO]
- [DefaultValue (ConflictOption.CompareAllSearchableValues)]
public virtual ConflictOption ConflictOption {
get { throw new NotImplementedException (); }
set { throw new NotImplementedException (); }
}
[MonoTODO]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [Browsable (false)]
public DbDataAdapter DataAdapter {
get { throw new NotImplementedException (); }
set { throw new NotImplementedException (); }
}
[MonoTODO]
- [DefaultValue ("")]
public virtual string QuotePrefix {
get { throw new NotImplementedException (); }
set { throw new NotImplementedException (); }
}
[MonoTODO]
- [DefaultValue ("")]
public virtual string QuoteSuffix {
get { throw new NotImplementedException (); }
set { throw new NotImplementedException (); }
}
[MonoTODO]
- [DefaultValue (".")]
+ public SchemaLocation SchemaLocation {
+ get { throw new NotImplementedException (); }
+ set { throw new NotImplementedException (); }
+ }
+
+ [MonoTODO]
public virtual string SchemaSeparator {
get { throw new NotImplementedException (); }
set { throw new NotImplementedException (); }