OleDbRowUpdatedEvent.cs 955 B

123456789101112131415161718192021222324252627
  1. //------------------------------------------------------------------------------
  2. // <copyright file="OleDbRowUpdatedEvent.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">[....]</owner>
  6. // <owner current="true" primary="false">[....]</owner>
  7. //------------------------------------------------------------------------------
  8. namespace System.Data.OleDb {
  9. using System;
  10. using System.Data;
  11. using System.Data.Common;
  12. public sealed class OleDbRowUpdatedEventArgs : RowUpdatedEventArgs {
  13. public OleDbRowUpdatedEventArgs(DataRow dataRow, IDbCommand command, StatementType statementType, DataTableMapping tableMapping)
  14. : base(dataRow, command, statementType, tableMapping) {
  15. }
  16. new public OleDbCommand Command {
  17. get {
  18. return(OleDbCommand) base.Command;
  19. }
  20. }
  21. }
  22. }