2002-10-26 Piers Haken <piersh@friskit.com>
[mono.git] / mcs / class / Mono.Data.PostgreSqlClient / PgSqlRowUpdatedEventArgs.cs
1 //
2 // Mono.Data.PostgreSqlClient.PgSqlRowUpdatedEventArgs.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 Mono.Data.PostgreSqlClient {
16         public sealed class PgSqlRowUpdatedEventArgs : RowUpdatedEventArgs 
17         {
18                 [MonoTODO]
19                 public PgSqlRowUpdatedEventArgs (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 PgSqlCommand Command {
27                         get { throw new NotImplementedException (); }
28                 }
29
30                 [MonoTODO]
31                 ~PgSqlRowUpdatedEventArgs () 
32                 {
33                         throw new NotImplementedException ();
34                 }
35
36         }
37 }