This documentation is archived and is not being maintained.
XmlDocument.NodeRemoved Event
.NET Framework 1.1
Occurs when a node belonging to this document has been removed from its parent.
[Visual Basic] Public Event NodeRemoved As XmlNodeChangedEventHandler [C#] public event XmlNodeChangedEventHandler NodeRemoved; [C++] public: __event XmlNodeChangedEventHandler* NodeRemoved;
[JScript] In JScript, you can handle the events defined by a class, but you cannot define your own.
Event Data
The event handler receives an argument of type XmlNodeChangedEventArgs containing data related to this event. The following XmlNodeChangedEventArgs properties provide information specific to this event.
| Property | Description |
|---|---|
| Action | Gets a value indicating what type of node change event is occurring. |
| NewParent | Gets the value of the ParentNode after the operation completes. |
| Node | Gets the XmlNode that is being added, removed or changed. |
| OldParent | Gets the value of the ParentNode before the operation began. |
Remarks
All nodes created by this document, whether or not they have been inserted into the document, are included in this event.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
See Also
XmlDocument Class | XmlDocument Members | System.Xml Namespace
Show: