SqlParameter.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. //
  2. // System.Data.SqlClient.SqlParameter.cs
  3. //
  4. // Author:
  5. // Rodrigo Moya ([email protected])
  6. //
  7. // (C) Ximian, Inc.
  8. //
  9. namespace System.Data.SqlClient
  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 class SqlParameter : IDbDataParameter, IDataParameter
  15. {
  16. [MonoTODO]
  17. DbType DbType
  18. {
  19. get { throw new NotImplementedException (); }
  20. set { throw new NotImplementedException (); }
  21. }
  22. [MonoTODO]
  23. ParameterDirection Direction
  24. {
  25. get { throw new NotImplementedException (); }
  26. set { throw new NotImplementedException (); }
  27. }
  28. [MonoTODO]
  29. bool IsNullable
  30. {
  31. get { throw new NotImplementedException (); }
  32. }
  33. [MonoTODO]
  34. string ParameterName
  35. {
  36. get { throw new NotImplementedException (); }
  37. set { throw new NotImplementedException (); }
  38. }
  39. [MonoTODO]
  40. string SourceColumn
  41. {
  42. get { throw new NotImplementedException (); }
  43. set { throw new NotImplementedException (); }
  44. }
  45. [MonoTODO]
  46. DataRowVersion SourceVersion
  47. {
  48. get { throw new NotImplementedException (); }
  49. set { throw new NotImplementedException (); }
  50. }
  51. [MonoTODO]
  52. object Value
  53. {
  54. get { throw new NotImplementedException (); }
  55. set { throw new NotImplementedException (); }
  56. }
  57. [MonoTODO]
  58. byte Precision
  59. {
  60. get { throw new NotImplementedException (); }
  61. set { throw new NotImplementedException (); }
  62. }
  63. [MonoTODO]
  64. byte Scale
  65. {
  66. get { throw new NotImplementedException (); }
  67. set { throw new NotImplementedException (); }
  68. }
  69. [MonoTODO]
  70. int Size
  71. {
  72. get { throw new NotImplementedException (); }
  73. set { throw new NotImplementedException (); }
  74. }
  75. }
  76. }