* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / System.Data.OracleClient / System.Data.OracleClient / OracleRowUpdatedEventArgs.cs
1 //
2 // OracleRowUpdatedEventArgs.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.SqlRowUpdatedEventArgs
13 // Authors:
14 //      Rodrigo Moya (rodrigo@ximian.com)
15 //      Daniel Morgan (danmorg@sc.rr.com)
16 //      Tim Coleman (tim@timcoleman.com)
17 //
18 //
19 // (C) Ximian, Inc 2002
20 // Copyright (C) Tim Coleman, 2002-2003
21 //
22 // Licensed under the MIT/X11 License.
23 //
24
25 using System;
26 using System.Data;
27 using System.Data.Common;
28
29 namespace System.Data.OracleClient {
30         public sealed class OracleRowUpdatedEventArgs : RowUpdatedEventArgs 
31         {
32                 #region Constructors
33
34                 public OracleRowUpdatedEventArgs (DataRow row, IDbCommand command, StatementType statementType, DataTableMapping tableMapping) 
35                         : base (row, command, statementType, tableMapping)
36                 {
37                 }
38
39                 #endregion // Constructors
40
41                 #region Properties
42
43                 public new OracleCommand Command {
44                         get { return (OracleCommand) base.Command; }
45                 }
46
47                 #endregion // Properties
48         }
49 }