Updates referencesource to .NET 4.7
[mono-project.git] / mcs / class / referencesource / System.Data / System / Data / OleDb / OleDbRowUpdatedEvent.cs
blob043e585d0924c9c9a71d51f93f9fe5411ac927ad
1 //------------------------------------------------------------------------------
2 // <copyright file="OleDbRowUpdatedEvent.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.OleDb {
11 using System;
12 using System.Data;
13 using System.Data.Common;
15 public sealed class OleDbRowUpdatedEventArgs : RowUpdatedEventArgs {
17 public OleDbRowUpdatedEventArgs(DataRow dataRow, IDbCommand command, StatementType statementType, DataTableMapping tableMapping)
18 : base(dataRow, command, statementType, tableMapping) {
21 new public OleDbCommand Command {
22 get {
23 return(OleDbCommand) base.Command;