IColumnMappingCollection.cs 805 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //
  2. // System.Data.IColumnMappingCollection.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Contains a collection of ColumnMapping objects, and is implemented by the DataColumnMappingCollection, which is used in common by .NET data providers.
  13. /// </summary>
  14. public interface IColumnMappingCollection : IList, ICollection, IEnumerable
  15. {
  16. IColumnMapping Add(string sourceColumnName, string dataSetColumnName)
  17. {
  18. }
  19. bool Contains(string sourceColumnName)
  20. {
  21. }
  22. IColumnMapping GetByDataSetColumn(string dataSetColumnName)
  23. {
  24. }
  25. int IndexOf(string sourceColumnName)
  26. {
  27. }
  28. void RemoveAt(string sourceColumnName)
  29. {
  30. }
  31. object this[string index]
  32. {
  33. get
  34. {
  35. }
  36. set
  37. {
  38. }
  39. }
  40. }
  41. }