| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // System.Data.IColumnMappingCollection.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- namespace System.Data
- {
- /// <summary>
- /// Contains a collection of ColumnMapping objects, and is implemented by the DataColumnMappingCollection, which is used in common by .NET data providers.
- /// </summary>
- public interface IColumnMappingCollection : IList, ICollection, IEnumerable
- {
- IColumnMapping Add(string sourceColumnName, string dataSetColumnName)
- {
- }
- bool Contains(string sourceColumnName)
- {
- }
- IColumnMapping GetByDataSetColumn(string dataSetColumnName)
- {
- }
- int IndexOf(string sourceColumnName)
- {
- }
- void RemoveAt(string sourceColumnName)
- {
- }
-
- object this[string index]
- {
- get
- {
- }
- set
- {
- }
- }
- }
- }
|