Updates referencesource to .NET 4.7
[mono-project.git] / mcs / class / referencesource / System.Data / System / Data / SqlClient / SqlRowUpdatedEvent.cs
bloba0ff53b1fad939318be022e2f042522a28063b69
1 //------------------------------------------------------------------------------
2 // <copyright file="SqlRowUpdatedEvent.cs" company="Microsoft">
3 // Copyright (c) Microsoft Corporation. All rights reserved.
4 // </copyright>
5 // <owner current="true" primary="true">Microsoft</owner>
6 // <owner current="true" primary="false">Microsoft</owner>
7 //------------------------------------------------------------------------------
9 namespace System.Data.SqlClient {
11 using System.Diagnostics;
13 using System;
14 using System.Data;
15 using System.Data.Common;
17 public sealed class SqlRowUpdatedEventArgs : RowUpdatedEventArgs {
18 public SqlRowUpdatedEventArgs(DataRow row, IDbCommand command, StatementType statementType, DataTableMapping tableMapping)
19 : base(row, command, statementType, tableMapping) {
22 new public SqlCommand Command {
23 get {
24 return(SqlCommand) base.Command;