Jo Shields 3c1f479b9d Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
2015-04-07 09:35:12 +01:00

59 lines
1.3 KiB
C#

//
// OracleRowUpdatingEventArgs.cs
//
// Part of the Mono class libraries at
// mcs/class/System.Data.OracleClient/System.Data.OracleClient
//
// Assembly: System.Data.OracleClient.dll
// Namespace: System.Data.OracleClient
//
// Author: Tim Coleman <tim@timcoleman.com>
//
// Parts derived from System.Data.SqlClient.SqlRowUpdatingEventArgs
// Authors:
// Rodrigo Moya (rodrigo@ximian.com)
// Daniel Morgan (danmorg@sc.rr.com)
// Tim Coleman (tim@timcoleman.com)
//
// (C) Ximian, Inc 2002
// Copyright (C) Tim Coleman, 2002-2003
//
// Licensed under the MIT/X11 License.
using System;
using System.Data;
using System.Data.Common;
namespace System.Data.OracleClient
{
public sealed class OracleRowUpdatingEventArgs : RowUpdatingEventArgs
{
#region Constructors
public OracleRowUpdatingEventArgs (DataRow row, IDbCommand command, StatementType statementType, DataTableMapping tableMapping)
: base (row, command, statementType, tableMapping)
{
}
#endregion // Constructors
#region Properties
protected override IDbCommand BaseCommand {
get {
return base.BaseCommand;
}
set {
base.BaseCommand = value;
}
}
public new OracleCommand Command {
get { return (OracleCommand) base.Command; }
set { base.Command = value; }
}
#endregion // Properties
}
}