StateChangeEventArgs.cs 734 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // System.Data.SqlRowUpdatingEventArgs.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. namespace System.Data {
  12. public sealed class StateChangeEventArgs : EventArgs {
  13. [MonoTODO]
  14. public StateChangeEventArgs(ConnectionState originalState,
  15. ConnectionState currentState) {
  16. // FIXME: do me
  17. }
  18. [MonoTODO]
  19. public ConnectionState CurrentState {
  20. get {
  21. // FIXME: do me
  22. throw new NotImplementedException ();
  23. }
  24. }
  25. [MonoTODO]
  26. public ConnectionState OriginalState {
  27. get {
  28. // FIXME: do me
  29. throw new NotImplementedException ();
  30. }
  31. }
  32. [MonoTODO]
  33. ~StateChangeEventArgs() {
  34. // FIXME: do me
  35. }
  36. }
  37. }