Add copyright headers
[mono.git] / mcs / class / System.Data / System.Data.SqlClient / SqlRowUpdatingEventArgs.cs
1 //
2 // System.Data.SqlClient.SqlRowUpdatingEventArgs.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 {
17         public sealed class SqlRowUpdatingEventArgs : RowUpdatingEventArgs
18         {
19                 [MonoTODO]
20                 public SqlRowUpdatingEventArgs( DataRow row,
21                         IDbCommand command, StatementType statementType,
22                         DataTableMapping tableMapping) {
23                         // FIXME: do the constructor
24                 }
25
26                 [MonoTODO]
27                 public new SqlCommand Command {
28                         get {
29                                 throw new NotImplementedException ();
30                         } 
31                         
32                         set {
33                                 throw new NotImplementedException ();
34                         }
35                 }
36
37                 [MonoTODO]
38                 ~SqlRowUpdatingEventArgs() {
39                         // FIXME: create destructor to release resources
40                 }
41         }
42 }