OleDbInfoMessageEventArgs.cs 943 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 Properties
  18. public int ErrorCode {
  19. [MonoTODO]
  20. get { throw new NotImplementedException (); }
  21. }
  22. public OleDbErrorCollection Errors {
  23. [MonoTODO]
  24. get { throw new NotImplementedException (); }
  25. }
  26. public string Message {
  27. [MonoTODO]
  28. get { throw new NotImplementedException (); }
  29. }
  30. public string Source {
  31. [MonoTODO]
  32. get { throw new NotImplementedException (); }
  33. }
  34. #endregion // Properties
  35. #region Methods
  36. [MonoTODO]
  37. public override string ToString ()
  38. {
  39. throw new NotImplementedException ();
  40. }
  41. #endregion // Methods
  42. }
  43. }