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:
authorRodrigo Moya <rodrigo@mono-cvs.ximian.com>2002-03-28 22:55:41 +0300
committerRodrigo Moya <rodrigo@mono-cvs.ximian.com>2002-03-28 22:55:41 +0300
commitd11d2324e5e5da34bb7018c2e40e976d4899aa94 (patch)
tree7939b963cd863f0a1ac08eb32010a7241954956b /mcs/class/System.Data/System.Data.Common/DataTableMappingCollection.cs
parent79977cbc618674786d471de4db9dc79cb97aa456 (diff)
2002-03-28 Rodrigo Moya <rodrigo@ximian.com>
* System.Data.Common/DataTableMappingCollection.cs: * System.Data.Common/DbDataAdapter.cs: * System.Data.Common/DbDataPermission.cs: * System.Data.Common/DataTableMapping.cs: new skeletons. * System.Data.SqlClient/SqlDataAdapter.cs: * System.Data.SqlClient/SqlDataReader.cs: * System.Data.SqlClient/SqlErrors.cs: * System.Data.SqlClient/SqlError.cs: * System.Data.SqlClient/SqlException.cs: * System.Data.SqlClient/SqlParameter.cs: * System.Data.SqlClient/SqlParameterCollection.cs: * System.Data.SqlClient/SqlTransaction.cs: * System.Data.SqlClient/SqlCommand.cs: fixed skeletons. svn path=/trunk/mcs/; revision=3461
Diffstat (limited to 'mcs/class/System.Data/System.Data.Common/DataTableMappingCollection.cs')
-rw-r--r--mcs/class/System.Data/System.Data.Common/DataTableMappingCollection.cs125
1 files changed, 125 insertions, 0 deletions
diff --git a/mcs/class/System.Data/System.Data.Common/DataTableMappingCollection.cs b/mcs/class/System.Data/System.Data.Common/DataTableMappingCollection.cs
new file mode 100644
index 00000000000..5000db65ff1
--- /dev/null
+++ b/mcs/class/System.Data/System.Data.Common/DataTableMappingCollection.cs
@@ -0,0 +1,125 @@
+//
+// System.Data.Common.DataTableMappingCollection.cs
+//
+// Author:
+// Rodrigo Moya (rodrigo@ximian.com)
+//
+// (C) Ximian, Inc
+//
+
+namespace System.Data.Common
+{
+ /// <summary>
+ /// A collection of DataTableMapping objects. This class cannot be inherited.
+ /// </summary>
+ public sealed class DataTableMappingCollection :
+ MarshalByRefObject, ITableMappingCollection, IList,
+ ICollection, IEnumerable
+ {
+ [MonoTODO]
+ public DataTableMappingCollection() {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public int Add(object) {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public DataTableMapping Add(string, string) {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public void AddRange(DataTableMapping[] values) {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public void Clear() {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public bool Contains(object) {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public bool Contains(string) {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public void CopyTo(Array array, int index) {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public DataTableMapping GetByDataSetTable(string dataSetTable) {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public static DataTableMapping GetTableMappingBySchemaAction(
+ DataTableMappingCollection tableMappings,
+ string sourceTable,
+ string dataSetTable,
+ MissingMappingAction mappingAction) {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public int IndexOf(object) {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public int IndexOf(string) {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public int IndexOfDataSetTable(string dataSetTable) {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public void Insert(int index, object value) {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public void Remove(object value) {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public void RemoveAt(int index) {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public void RemoveAt(string index) {
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public int Count {
+ get { throw new NotImplementedException (); }
+ }
+
+ [MonoTODO]
+ public DataTableMapping this[int] {
+ get { throw new NotImplementedException (); }
+ set { throw new NotImplementedException (); }
+ }
+
+ [MonoTODO]
+ public DataTableMapping this[string] {
+ get { throw new NotImplementedException (); }
+ set { throw new NotImplementedException (); }
+ }
+ }
+}