| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // System.Data.Odbc.OdbcRowUpdatedEventArgs.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 OdbcRowUpdatedEventArgs : RowUpdatedEventArgs
- {
- #region Constructors
- public OdbcRowUpdatedEventArgs (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; }
- }
- #endregion // Properties
- }
- }
|