IDataParameterCollection.cs 663 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // System.Data.IDataParameterCollection.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Collects all parameters relevant to a Command object and their mappings to DataSet columns, and is implemented by .NET data providers that access data sources.
  13. /// </summary>
  14. public interface IDataParameterCollection : IList, ICollection, IEnumerable
  15. {
  16. void RemoveAt(string parameterName)
  17. {
  18. }
  19. int IndexOf(string parameterName)
  20. {
  21. }
  22. bool Contains(string parameterName)
  23. {
  24. }
  25. object this[string parameterName]
  26. {
  27. get
  28. {
  29. }
  30. set
  31. {
  32. }
  33. }
  34. }
  35. }