2002-10-25 Tim Coleman (tim@tmicoleman.com)
[mono.git] / mcs / class / Mono.Data.TdsClient / Mono.Data.TdsClient / TdsRowUpdatedEventArgs.cs
1 //
2 // Mono.Data.TdsClient.TdsRowUpdatedEventArgs.cs
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2002
8 //
9
10 using System;
11 using System.Data;
12 using System.Data.Common;
13
14 namespace Mono.Data.TdsClient {
15         public sealed class TdsRowUpdatedEventArgs : RowUpdatedEventArgs 
16         {
17                 [MonoTODO]
18                 public TdsRowUpdatedEventArgs (DataRow row, IDbCommand command, StatementType statementType, DataTableMapping tableMapping) 
19                         : base (row, command, statementType, tableMapping)
20                 {
21                         throw new NotImplementedException ();
22                 }
23
24                 [MonoTODO]
25                 public new TdsCommand Command {
26                         get { throw new NotImplementedException (); }
27                 }
28
29                 [MonoTODO]
30                 ~TdsRowUpdatedEventArgs () 
31                 {
32                         throw new NotImplementedException ();
33                 }
34
35         }
36 }