| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // System.Data.Odbc.OdbcRowUpdatingEventArgs.cs
- //
- // Author:
- // Rodrigo Moya ([email protected])
- // Daniel Morgan ([email protected])
- // Tim Coleman ([email protected])
- //
- // (C) Ximian, Inc 2002
- // Copyright (C) Tim Coleman, 2002
- //
- using System;
- using System.Data;
- using System.Data.Common;
- namespace System.Data.Odbc {
- public sealed class OdbcRowUpdatingEventArgs : RowUpdatingEventArgs
- {
- #region Constructors
- public OdbcRowUpdatingEventArgs (DataRow row, IDbCommand command, StatementType statementType, DataTableMapping tableMapping)
- : base (row, command, statementType, tableMapping)
- {
- }
- #endregion // Constructors
- #region Properties
- public new OdbcCommand Command {
- get { return (OdbcCommand) base.Command; }
- set { base.Command = value; }
- }
- #endregion // Properties
- }
- }
|