2002-08-01 Miguel de Icaza <miguel@ximian.com>
[mono.git] / mcs / class / Mono.Data.PostgreSqlClient / PgSqlRowUpdatingEventArgs.cs
1 //
2 // System.Data.SqlClient.SqlRowUpdatingEventArgs.cs
3 //
4 // Author:
5 //   Rodrigo Moya (rodrigo@ximian.com)
6 //   Daniel Morgan (danmorg@sc.rr.com)
7 //
8 // (C) Ximian, Inc 2002
9 //
10
11 using System;
12 using System.Data;
13 using System.Data.Common;
14
15 namespace System.Data.SqlClient
16 {
17         public sealed class SqlRowUpdatingEventArgs : RowUpdatingEventArgs
18         {
19                 [MonoTODO]
20                 public SqlRowUpdatingEventArgs (DataRow row, IDbCommand command, StatementType statementType, DataTableMapping tableMapping) 
21                         : base (row, command, statementType, tableMapping)
22                 {
23                         throw new NotImplementedException ();
24                 }
25
26                 [MonoTODO]
27                 public new SqlCommand Command {
28                         get {
29                                 throw new NotImplementedException ();
30                         } 
31                         
32                         set {
33                                 throw new NotImplementedException ();
34                         }
35                 }
36
37                 [MonoTODO]
38                 ~SqlRowUpdatingEventArgs() 
39                 {
40                         throw new NotImplementedException ();
41                 }
42         }
43 }