| 12345678910111213141516171819202122232425262728 |
- //
- // XmlUpdateEventArgs.cs
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- //
- #if NET_1_2
- using System;
- using System.Collections;
- namespace System.Xml
- {
- public abstract class XmlUpdateEventArgs
- {
- public XmlUpdateEventArgs ()
- {
- }
- public abstract IEnumerable ErrorItems { get; }
- public abstract bool Executed { get; }
- public abstract Exception InnerException { get; }
- }
- }
- #endif
|