(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Data.OracleClient / System.Data.OracleClient / OracleRowUpdatedEventArgs.cs
blob441e1e43ebe8403a1f534ebf47f34d49d58ecfb9
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>
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)
19 // (C) Ximian, Inc 2002
20 // Copyright (C) Tim Coleman, 2002-2003
22 // Licensed under the MIT/X11 License.
25 using System;
26 using System.Data;
27 using System.Data.Common;
29 namespace System.Data.OracleClient {
30 public sealed class OracleRowUpdatedEventArgs : RowUpdatedEventArgs
32 #region Constructors
34 public OracleRowUpdatedEventArgs (DataRow row, IDbCommand command, StatementType statementType, DataTableMapping tableMapping)
35 : base (row, command, statementType, tableMapping)
39 #endregion // Constructors
41 #region Properties
43 public new OracleCommand Command {
44 get { return (OracleCommand) base.Command; }
47 #endregion // Properties