IDataParameter.cs 774 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. //
  2. // System.Data.IDataParameter.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Represents a parameter to a Command object, and optionally, its mapping to DataSet columns; and is implemented by .NET data providers that access data sources.
  13. /// </summary>
  14. public interface IDataParameter
  15. {
  16. DbType DbType
  17. {
  18. get
  19. {
  20. }
  21. set
  22. {
  23. }
  24. }
  25. ParameterDirection Direction
  26. {
  27. get
  28. {
  29. }
  30. set
  31. {
  32. }
  33. }
  34. bool IsNullable
  35. {
  36. get
  37. {
  38. }
  39. }
  40. string ParameterName
  41. {
  42. get
  43. {
  44. }
  45. set
  46. {
  47. }
  48. }
  49. string SourceColumn
  50. {
  51. get
  52. {
  53. }
  54. set
  55. {
  56. }
  57. }
  58. DataRowVersion SourceVersion
  59. {
  60. get
  61. {
  62. }
  63. set
  64. {
  65. }
  66. }
  67. }
  68. }