IDataParameterCollection.cs 778 B

12345678910111213141516171819202122232425
  1. //------------------------------------------------------------------------------
  2. // <copyright file="IDataParameterCollection.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">markash</owner>
  6. // <owner current="true" primary="false">laled</owner>
  7. //------------------------------------------------------------------------------
  8. namespace System.Data {
  9. using System;
  10. public interface IDataParameterCollection : System.Collections.IList {
  11. object this[string parameterName] {
  12. get;
  13. set;
  14. }
  15. bool Contains(string parameterName);
  16. int IndexOf(string parameterName);
  17. void RemoveAt(string parameterName);
  18. }
  19. }