e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
28 lines
955 B
C#
28 lines
955 B
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="OleDbRowUpdatedEvent.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
// <owner current="true" primary="true">[....]</owner>
|
|
// <owner current="true" primary="false">[....]</owner>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Data.OleDb {
|
|
|
|
using System;
|
|
using System.Data;
|
|
using System.Data.Common;
|
|
|
|
public sealed class OleDbRowUpdatedEventArgs : RowUpdatedEventArgs {
|
|
|
|
public OleDbRowUpdatedEventArgs(DataRow dataRow, IDbCommand command, StatementType statementType, DataTableMapping tableMapping)
|
|
: base(dataRow, command, statementType, tableMapping) {
|
|
}
|
|
|
|
new public OleDbCommand Command {
|
|
get {
|
|
return(OleDbCommand) base.Command;
|
|
}
|
|
}
|
|
}
|
|
}
|