| 1234567891011121314151617181920212223 |
- //
- // XPathDocumentNodeChangedAction.cs
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- //
- #if NET_2_0
- namespace System.Xml.XPath
- {
- public enum XPathDocumentNodeChangedAction
- {
- Deleteed,
- Deleteing,
- Inserted,
- Inserting,
- Rejected,
- Rejecting,
- Updated,
- Updating,
- }
- }
- #endif
|