* FileSystemInfo.cs: corrected COM visibility of UTC properties
[mono.git] / mcs / class / System.Data.SqlXml / System.Xml / XmlUpdateEventArgs.cs
1 //
2 // XmlUpdateEventArgs.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
6 //
7 #if NET_1_2
8
9 using System;
10 using System.Collections;
11
12 namespace System.Xml
13 {
14         public abstract class XmlUpdateEventArgs
15         {
16
17                 public XmlUpdateEventArgs ()
18                 { 
19                 } 
20
21                 public abstract IEnumerable ErrorItems { get; }
22
23                 public abstract bool Executed { get; }
24
25                 public abstract Exception InnerException { get; }
26         }
27 }
28 #endif