Welcome to mirror list, hosted at ThFree Co, Russian Federation.

OleDbRowUpdatedEvent.cs « OleDb « Data « System « System.Data « referencesource « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4c3ccf53cb39825677a5f4e2f9fad50caffbf5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//------------------------------------------------------------------------------
// <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;
            }
        }
    }
}