2002-07-09 Tim Coleman <tim@timcoleman.com>
[mono.git] / mcs / class / System.Data / System.Data.OleDb / OleDbRowUpdatedEventArgs.cs
1 //
2 // System.Data.OleDb.OleDbRowUpdatedEventArgs
3 //
4 // Authors:
5 //   Rodrigo Moya (rodrigo@ximian.com)
6 //   Tim Coleman (tim@timcoleman.com)
7 //
8 // Copyright (C) Rodrigo Moya, 2002
9 // Copyright (C) Tim Coleman, 2002
10 //
11
12 using System.Data;
13 using System.Data.Common;
14
15 namespace System.Data.OleDb
16 {
17         public sealed class OleDbRowUpdatedEventArgs : RowUpdatedEventArgs
18         {
19                 #region Fields
20                 
21                 OleDbCommand command;
22
23                 #endregion // Fields
24
25                 #region Constructors
26
27                 [MonoTODO]
28                 public OleDbRowUpdatedEventArgs (DataRow dataRow, IDbCommand command, StatementType statementType, DataTableMapping tableMapping)
29                         : base (dataRow, command, statementType, tableMapping)
30
31                 {
32                         this.command = (OleDbCommand) command;
33                         throw new NotImplementedException ();
34                 }
35
36                 #endregion // Constructors
37
38                 #region Properties
39
40                 public new OleDbCommand Command {
41                         get { return command; }
42                 }
43
44                 #endregion // Properties
45         }
46 }