| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- //
- // NodeChangedEventArgs.cs
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- //
- // (C)2004 Novell Inc.
- //
- #if NET_2_0
- using System;
- namespace System.Xml.XPath
- {
- public class NodeChangedEventArgs : EventArgs
- {
- XPathDocumentNodeChangedAction action;
- XPathEditableNavigator item;
- public XPathDocumentNodeChangedAction Action {
- get { return action; }
- }
- public XPathEditableNavigator Item {
- get { throw new NotImplementedException (); }
- }
- public XPathEditableNavigator NewParent {
- get { throw new NotImplementedException (); }
- }
- public XPathEditableNavigator NewPreviousItem {
- get { throw new NotImplementedException (); }
- }
- public object NewValue {
- get { throw new NotImplementedException (); }
- }
- public XPathEditableNavigator OldParent {
- get { throw new NotImplementedException (); }
- }
- public XPathEditableNavigator OldPreviousItem {
- get { throw new NotImplementedException (); }
- }
- public object OldValue {
- get { throw new NotImplementedException (); }
- }
- }
- }
- #endif
|