NodeChangedEventArgs.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. //
  2. // NodeChangedEventArgs.cs
  3. //
  4. // Author:
  5. // Atsushi Enomoto <[email protected]>
  6. //
  7. // (C)2004 Novell Inc.
  8. //
  9. #if NET_2_0
  10. using System;
  11. namespace System.Xml.XPath
  12. {
  13. public class NodeChangedEventArgs : EventArgs
  14. {
  15. XPathDocumentNodeChangedAction action;
  16. XPathEditableNavigator item;
  17. public XPathDocumentNodeChangedAction Action {
  18. get { return action; }
  19. }
  20. public XPathEditableNavigator Item {
  21. get { throw new NotImplementedException (); }
  22. }
  23. public XPathEditableNavigator NewParent {
  24. get { throw new NotImplementedException (); }
  25. }
  26. public XPathEditableNavigator NewPreviousItem {
  27. get { throw new NotImplementedException (); }
  28. }
  29. public object NewValue {
  30. get { throw new NotImplementedException (); }
  31. }
  32. public XPathEditableNavigator OldParent {
  33. get { throw new NotImplementedException (); }
  34. }
  35. public XPathEditableNavigator OldPreviousItem {
  36. get { throw new NotImplementedException (); }
  37. }
  38. public object OldValue {
  39. get { throw new NotImplementedException (); }
  40. }
  41. }
  42. }
  43. #endif