Updates referencesource to .NET 4.7
[mono.git] / mcs / class / referencesource / System.Data / System / Data / OleDb / OleDbRowUpdatedEvent.cs
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 //------------------------------------------------------------------------------
8
9 namespace System.Data.OleDb {
10
11     using System;
12     using System.Data;
13     using System.Data.Common;
14
15     public sealed class OleDbRowUpdatedEventArgs : RowUpdatedEventArgs {
16
17         public OleDbRowUpdatedEventArgs(DataRow dataRow, IDbCommand command, StatementType statementType, DataTableMapping tableMapping)
18         : base(dataRow, command, statementType, tableMapping) {
19         }
20
21         new public OleDbCommand Command {
22             get {
23                 return(OleDbCommand) base.Command;
24             }
25         }
26     }
27 }