| 1234567891011121314151617181920212223 |
- //
- // XPathDocument2ChangedEventAction.cs
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- //
- #if NET_1_2
- namespace System.Xml
- {
- public enum XPathDocument2ChangedEventAction
- {
- Inserted,
- Removed,
- Changed,
- Inserting,
- Removing,
- Changing,
- Rejecting,
- Rejected
- }
- }
- #endif
|