2002-04-20 Daniel Morgan <danmorg@sc.rr.com>
[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,
20                         IDbCommand command, StatementType statementType,
21                         DataTableMapping tableMapping) {
22                         // FIXME: do the constructor
23                 }
24
25                 [MonoTODO]
26                 public new SqlCommand Command {
27                         get {
28                 
29                         }
30                 }
31
32                 [MonoTODO]
33                 ~SqlRowUpdatedEventArgs () {
34                         // FIXME: need destructor to release resources
35                 }
36
37         }
38 }