OdbcInfoMessageEventArgs.cs 779 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 OdbcErrorCollection Errors {
  21. [MonoTODO]
  22. get { throw new NotImplementedException (); }
  23. }
  24. public string Message {
  25. [MonoTODO]
  26. get { throw new NotImplementedException (); }
  27. }
  28. #endregion // Properties
  29. #region Methods
  30. [MonoTODO]
  31. public override string ToString ()
  32. {
  33. throw new NotImplementedException ();
  34. }
  35. #endregion // Methods
  36. }
  37. }