OleDbInfoMessageEventArgs.cs 1.0 KB

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