SqlInfoMessageEventArgs.cs 829 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //
  2. // System.Data.SqlClient.SqlInfoMessageEventArgs.cs
  3. //
  4. // Author:
  5. // Rodrigo Moya ([email protected])
  6. // Daniel Morgan ([email protected])
  7. //
  8. // (C) Ximian, Inc 2002
  9. //
  10. using System;
  11. using System.Data;
  12. namespace System.Data.SqlClient
  13. {
  14. public sealed class SqlInfoMessageEventArgs : EventArgs
  15. {
  16. [MonoTODO]
  17. public SqlErrorCollection Errors {
  18. get {
  19. throw new NotImplementedException ();
  20. }
  21. }
  22. [MonoTODO]
  23. public string Message
  24. {
  25. get {
  26. throw new NotImplementedException ();
  27. }
  28. }
  29. [MonoTODO]
  30. public string Source {
  31. get {
  32. throw new NotImplementedException ();
  33. }
  34. }
  35. [MonoTODO]
  36. public override string ToString() {
  37. // representation of InfoMessage event
  38. }
  39. [MonoTODO]
  40. ~SqlInfoMessageEventArgs() {
  41. // FIXME: destructor needs to release resources
  42. }
  43. }
  44. }