Updates referencesource to .NET 4.7
[mono.git] / mcs / class / referencesource / System.Data / System / Data / DataTableNewRowEvent.cs
1 //------------------------------------------------------------------------------
2 // <copyright file="DataTableNewRowEvent.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 {
10     using System;
11     using System.Diagnostics;
12
13     public sealed class DataTableNewRowEventArgs : EventArgs {
14
15         private readonly DataRow dataRow;
16
17         public DataTableNewRowEventArgs(DataRow dataRow) {
18             this.dataRow = dataRow;
19         }
20
21         public DataRow Row{
22             get {
23                 return dataRow;
24             }
25         }
26     }
27 }