Added files and folders for TARGET_JVM code base
[mono.git] / mcs / class / System.Data / System.Data.SqlClient.jvm / SqlRowUpdatingEventArgs.cs
1 //\r
2 // System.Data.SqlClient.SqlRowUpdatingEventArgs.cs\r
3 //\r
4 // Author:\r
5 //   Rodrigo Moya (rodrigo@ximian.com)\r
6 //   Daniel Morgan (danmorg@sc.rr.com)\r
7 //   Tim Coleman (tim@timcoleman.com)\r
8 //\r
9 // (C) Ximian, Inc 2002\r
10 // Copyright (C) Tim Coleman, 2002\r
11 //\r
12 \r
13 using System;\r
14 using System.Data;\r
15 using System.Data.Common;\r
16 \r
17 namespace System.Data.SqlClient {\r
18         public sealed class SqlRowUpdatingEventArgs : RowUpdatingEventArgs\r
19         {\r
20                 #region Constructors\r
21 \r
22                 public SqlRowUpdatingEventArgs (DataRow row, IDbCommand command, StatementType statementType, DataTableMapping tableMapping) \r
23                         : base (row, command, statementType, tableMapping)\r
24                 {\r
25                 }\r
26 \r
27                 #endregion // Constructors\r
28 \r
29                 #region Properties\r
30 \r
31                 public new SqlCommand Command {\r
32                         get { return (SqlCommand) base.Command; }\r
33                         set { base.Command = value; }\r
34                 }\r
35 \r
36                 #endregion // Properties\r
37         }\r
38 }\r