2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.Data.OracleClient / System.Data.OracleClient / OracleRowUpdatingEventArgs.cs
1 //
2 // OracleRowUpdatingEventArgs.cs
3 //
4 // Part of the Mono class libraries at
5 // mcs/class/System.Data.OracleClient/System.Data.OracleClient
6 //
7 // Assembly: System.Data.OracleClient.dll
8 // Namespace: System.Data.OracleClient
9 //
10 // Author: Tim Coleman <tim@timcoleman.com>
11 //
12 // Parts derived from System.Data.SqlClient.SqlRowUpdatingEventArgs
13 // Authors:
14 //      Rodrigo Moya (rodrigo@ximian.com)
15 //      Daniel Morgan (danmorg@sc.rr.com)
16 //      Tim Coleman (tim@timcoleman.com)
17 //
18 // (C) Ximian, Inc 2002
19 // Copyright (C) Tim Coleman, 2002-2003
20 //
21 // Licensed under the MIT/X11 License.
22
23 using System;
24 using System.Data;
25 using System.Data.Common;
26
27 namespace System.Data.OracleClient {
28         public sealed class OracleRowUpdatingEventArgs : RowUpdatingEventArgs
29         {
30                 #region Constructors
31
32                 public OracleRowUpdatingEventArgs (DataRow row, IDbCommand command, StatementType statementType, DataTableMapping tableMapping) 
33                         : base (row, command, statementType, tableMapping)
34                 {
35                 }
36
37                 #endregion // Constructors
38
39                 #region Properties
40
41                 public new OracleCommand Command {
42                         get { return (OracleCommand) base.Command; }
43                         set { base.Command = value; }
44                 }
45
46                 #endregion // Properties
47         }
48 }