SqlParameterCollection.cs 563 B

123456789101112131415161718192021222324252627
  1. //
  2. // System.Data.SqlClient.SqlParameterCollection.cs
  3. //
  4. // Author:
  5. // Rodrigo Moya ([email protected])
  6. //
  7. // (C) Ximian, Inc
  8. //
  9. using System.Collections;
  10. namespace System.Data.SqlClient
  11. {
  12. /// <summary>
  13. /// Collects all parameters relevant to a Command object and their mappings to DataSet columns.
  14. /// </summary>
  15. public class SqlParameterCollection : IDataParameterCollection
  16. {
  17. void RemoveAt(string parameterName);
  18. int IndexOf(string parameterName);
  19. bool Contains(string parameterName);
  20. object this[string parameterName]{get; set;}
  21. }
  22. }