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:
authorMiguel de Icaza <miguel@gnome.org>2002-05-05 21:03:08 +0400
committerMiguel de Icaza <miguel@gnome.org>2002-05-05 21:03:08 +0400
commitf3681bcbda3157cfc08c4c717676c14944d11936 (patch)
tree87d6f61ed2b056da2e136b3139020abed2c6b0e0 /mcs/class/System.Data/System.Data.Common/DataTableMappingCollection.cs
parentcb2dbaaed6822b7673f060b14581f29914d9ec15 (diff)
It is safe to commit this code, because it is still excluded by the
build file above. 2002-05-05 Miguel de Icaza <miguel@ximian.com> * DataTableMapping.cs, DataTableMappingCollection.cs: comment out interfaces we do not implement yet. * DbDataAdapter.cs: Stub IEnumerable, comment out interfaces we do not implement yet. * DbDataPermissionAttribute.cs: call base constructor. svn path=/trunk/mcs/; revision=4309
Diffstat (limited to 'mcs/class/System.Data/System.Data.Common/DataTableMappingCollection.cs')
-rw-r--r--mcs/class/System.Data/System.Data.Common/DataTableMappingCollection.cs10
1 files changed, 8 insertions, 2 deletions
diff --git a/mcs/class/System.Data/System.Data.Common/DataTableMappingCollection.cs b/mcs/class/System.Data/System.Data.Common/DataTableMappingCollection.cs
index 5a51cd6dc7b..0f396f22632 100644
--- a/mcs/class/System.Data/System.Data.Common/DataTableMappingCollection.cs
+++ b/mcs/class/System.Data/System.Data.Common/DataTableMappingCollection.cs
@@ -16,8 +16,8 @@ namespace System.Data.Common
/// A collection of DataTableMapping objects. This class cannot be inherited.
/// </summary>
public sealed class DataTableMappingCollection :
- MarshalByRefObject, ITableMappingCollection, IList,
- ICollection, IEnumerable
+ MarshalByRefObject, // ITableMappingCollection, IList,
+ IEnumerable //ICollection,
{
[MonoTODO]
public DataTableMappingCollection() {
@@ -124,5 +124,11 @@ namespace System.Data.Common
get { throw new NotImplementedException (); }
set { throw new NotImplementedException (); }
}
+
+ [MonoTODO]
+ public IEnumerator GetEnumerator ()
+ {
+ throw new NotImplementedException ();
+ }
}
}