2002-11-09 Tim Coleman <tim@timcoleman.com>
[mono.git] / mcs / class / Mono.Data.SybaseClient / Mono.Data.SybaseClient / SybaseRowUpdatedEventArgs.cs
1 //
2 // System.Data.SybaseClient.SybaseRowUpdatedEventArgs.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.SybaseClient {
15         public sealed class SybaseRowUpdatedEventArgs : RowUpdatedEventArgs 
16         {
17                 #region Constructors
18
19                 [MonoTODO]
20                 public SybaseRowUpdatedEventArgs (DataRow row, IDbCommand command, StatementType statementType, DataTableMapping tableMapping) 
21                         : base (row, command, statementType, tableMapping)
22                 {
23                         throw new NotImplementedException ();
24                 }
25
26                 #endregion // Constructors
27
28                 #region Properties
29
30                 [MonoTODO]
31                 public new SybaseCommand Command 
32                 {
33                         get { throw new NotImplementedException (); }
34                 }
35
36                 #endregion // Properties
37         }
38 }