2002-05-11 Tim Coleman
[mono.git] / mcs / class / Mono.Data.PostgreSqlClient / Mono.Data.PostgreSqlClient / PgSqlRowUpdatedEventArgs.cs
1 //
2 // System.Data.SqlClient.SqlRowUpdatedEventArgs.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         public sealed class SqlRowUpdatedEventArgs : RowUpdatedEventArgs 
17         {
18                 [MonoTODO]
19                 public SqlRowUpdatedEventArgs (DataRow row, IDbCommand command, StatementType statementType, DataTableMapping tableMapping) 
20                         : base (row, command, statementType, tableMapping)
21                 {
22                         throw new NotImplementedException ();
23                 }
24
25                 [MonoTODO]
26                 public new SqlCommand Command {
27                         get { throw new NotImplementedException (); }
28                 }
29
30                 [MonoTODO]
31                 ~SqlRowUpdatedEventArgs () 
32                 {
33                         throw new NotImplementedException ();
34                 }
35
36         }
37 }