2004-04-22 Martin Baulig <martin@ximian.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                 public OleDbRowUpdatedEventArgs (DataRow dataRow, IDbCommand command, StatementType statementType, DataTableMapping tableMapping)
28                         : base (dataRow, command, statementType, tableMapping)
29
30                 {
31                 }
32
33                 #endregion // Constructors
34
35                 #region Properties
36
37                 public new OleDbCommand Command {
38                         get { return (OleDbCommand) base.Command; }
39                 }
40
41                 #endregion // Properties
42         }
43 }