| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- //
- // System.Data.Common.DataTableMappingCollection.cs
- //
- // Author:
- // Rodrigo Moya ([email protected])
- //
- // (C) Ximian, Inc
- //
- using System;
- using System.Collections;
- 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 obj) {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public DataTableMapping Add (string a, string b) {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void AddRange(DataTableMapping[] values) {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Clear() {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public bool Contains (object obj) {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public bool Contains (string str) {
- 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 obj) {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public int IndexOf (string str) {
- 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 i] {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public DataTableMapping this[string s] {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
- }
- }
|