Add copyright headers
[mono.git] / mcs / class / System.Data / System.Data.SqlClient / SqlInfoMessageEventArgs.cs
1 //
2 // System.Data.SqlClient.SqlInfoMessageEventArgs.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
14 namespace System.Data.SqlClient
15 {
16         public sealed class SqlInfoMessageEventArgs : EventArgs
17         {
18                 [MonoTODO]
19                 public SqlErrorCollection Errors {
20                         get { 
21                                 throw new NotImplementedException (); 
22                         }
23                 }       
24
25                 [MonoTODO]
26                 public string Message 
27                 {
28                         get { 
29                                 throw new NotImplementedException (); 
30                         }
31                 }       
32
33                 [MonoTODO]
34                 public string Source {
35                         get { 
36                                 throw new NotImplementedException (); 
37                         }
38                 }
39
40                 [MonoTODO]
41                 public override string ToString() {
42                         // representation of InfoMessage event
43                 }
44
45                 [MonoTODO]
46                 ~SqlInfoMessageEventArgs() {
47                         // FIXME: destructor needs to release resources
48                 }
49         }
50 }