SqlRowUpdatedEvent.cs 1.0 KB

12345678910111213141516171819202122232425262728
  1. //------------------------------------------------------------------------------
  2. // <copyright file="SqlRowUpdatedEvent.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.SqlClient {
  9. using System.Diagnostics;
  10. using System;
  11. using System.Data;
  12. using System.Data.Common;
  13. public sealed class SqlRowUpdatedEventArgs : RowUpdatedEventArgs {
  14. public SqlRowUpdatedEventArgs(DataRow row, IDbCommand command, StatementType statementType, DataTableMapping tableMapping)
  15. : base(row, command, statementType, tableMapping) {
  16. }
  17. new public SqlCommand Command {
  18. get {
  19. return(SqlCommand) base.Command;
  20. }
  21. }
  22. }
  23. }