Add copyright headers
[mono.git] / mcs / class / System.Data / System.Data.Common / RowUpdatedEventArgs.cs
1 //
2 // System.Data.Common.RowUpdatedEventArgs.cs
3 //
4 // Author:
5 //   Rodrigo Moya (rodrigo@ximian.com)
6 //
7 // (C) Ximian, Inc
8 //
9
10 using System.Data;
11
12 namespace System.Data.Common
13 {
14         /// <summary>
15         /// Provides data for the RowUpdated event of a .NET data provider.
16         /// </summary>
17         public abstract class RowUpdatedEventArgs : EventArgs
18         {
19                 [MonoTODO]
20                 protected RowUpdatedEventArgs(DataRow dataRow,
21                                               IDbCommand command,
22                                               StatementType statementType,
23                                               DataTableMapping tableMapping) {
24                         throw new NotImplementedException ();
25                 }
26                 
27                 [MonoTODO]
28                 public IDbCommand Command {
29                         get { throw new NotImplementedException (); }
30                 }
31
32                 [MonoTODO]
33                 public Exception Errors {
34                         get { throw new NotImplementedException (); }
35                         set { throw new NotImplementedException (); }
36                 }
37
38                 [MonoTODO]
39                 public int RecordsAffected {
40                         get { throw new NotImplementedException (); }
41                 }
42
43                 [MonoTODO]
44                 public DataRow Row {
45                         get { throw new NotImplementedException (); }
46                 }
47
48                 [MonoTODO]
49                 public StatementType StatementType {
50                         get { throw new NotImplementedException (); }
51                 }
52
53                 [MonoTODO]
54                 public UpdateStatus Status {
55                         get { throw new NotImplementedException (); }
56                         set { throw new NotImplementedException (); }
57                 }
58
59                 [MonoTODO]
60                 public DataTableMapping TableMapping {
61                         get { throw new NotImplementedException (); }
62                 }
63         }
64 }