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