OdbcInfoMessageEventArgs.cs 964 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //
  2. // System.Data.Odbc.OdbcInfoMessageEventArgs
  3. //
  4. // Author:
  5. // Umadevi S ([email protected])
  6. //
  7. // Copyright (C) Novell Inc, 2004
  8. //
  9. using System.Data;
  10. using System.Data.Common;
  11. namespace System.Data.Odbc
  12. {
  13. public sealed class OdbcInfoMessageEventArgs : EventArgs
  14. {
  15. #region Constructors
  16. internal OdbcInfoMessageEventArgs() {
  17. }
  18. #endregion Constructors
  19. #region Properties
  20. public int ErrorCode {
  21. [MonoTODO]
  22. get { throw new NotImplementedException (); }
  23. }
  24. public OdbcErrorCollection Errors {
  25. [MonoTODO]
  26. get { throw new NotImplementedException (); }
  27. }
  28. public string Message {
  29. [MonoTODO]
  30. get { throw new NotImplementedException (); }
  31. }
  32. public string Source {
  33. [MonoTODO]
  34. get { throw new NotImplementedException (); }
  35. }
  36. #endregion // Properties
  37. #region Methods
  38. [MonoTODO]
  39. public override string ToString ()
  40. {
  41. throw new NotImplementedException ();
  42. }
  43. #endregion // Methods
  44. }
  45. }