2004-03-12 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[mono.git] / mcs / class / System.Data / System.Data.OleDb / OleDbRowUpdatingEventArgs.cs
1 //
2 // System.Data.OleDb.OleDbRowUpdatingEventArgs
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 OleDbRowUpdatingEventArgs : RowUpdatingEventArgs
18         {
19
20                 #region Fields
21
22                 OleDbCommand command = null;
23
24                 #endregion
25
26                 #region Constructors
27
28                 [MonoTODO]
29                 public OleDbRowUpdatingEventArgs (DataRow dataRow, IDbCommand command, StatementType statementType, DataTableMapping tableMapping)
30                         : base (dataRow, command, statementType, tableMapping)
31
32                 {
33                         this.command = (OleDbCommand) command;
34                         throw new NotImplementedException ();
35                 }
36
37                 #endregion
38
39                 #region Properties
40                 
41                 public new OleDbCommand Command {
42                         get { return command; }
43                         set { command = value; }
44                 }
45
46                 #endregion
47         }
48 }