SqlParameterCollection.cs 857 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. [MonoTODO]
  18. void RemoveAt(string parameterName)
  19. {
  20. throw new NotImplementedException ();
  21. }
  22. [MonoTODO]
  23. int IndexOf(string parameterName)
  24. {
  25. throw new NotImplementedException ();
  26. }
  27. [MonoTODO]
  28. bool Contains(string parameterName)
  29. {
  30. throw new NotImplementedException ();
  31. }
  32. [MonoTODO]
  33. object this[string parameterName]
  34. {
  35. get { throw new NotImplementedException (); }
  36. set { throw new NotImplementedException (); }
  37. }
  38. }
  39. }