2004-03-23 Umadevi S (sumadevi@novell.com)
[mono.git] / mcs / class / System.Data / System.Data.OleDb / OleDbInfoMessageEventArgs.cs
index 1d6fda59dff9173b4934c0b2496a69613f537428..9c0b5fa89bf75904d87a916a4625c326ec0eb0a8 100644 (file)
@@ -1,10 +1,12 @@
 //
 // System.Data.OleDb.OleDbInfoMessageEventArgs
 //
-// Author:
+// Authors:
 //   Rodrigo Moya (rodrigo@ximian.com)
+//   Tim Coleman (tim@timcoleman.com)
 //
 // Copyright (C) Rodrigo Moya, 2002
+// Copyright (C) Tim Coleman, 2002
 //
 
 using System.Data;
@@ -14,5 +16,38 @@ namespace System.Data.OleDb
 {
        public sealed class OleDbInfoMessageEventArgs : EventArgs
        {
+               #region Properties
+
+               public int ErrorCode {
+                       [MonoTODO]
+                       get { throw new NotImplementedException (); }
+               }
+
+               public OleDbErrorCollection Errors {
+                       [MonoTODO]
+                       get { throw new NotImplementedException (); }
+               }
+
+               public string Message {
+                       [MonoTODO]
+                       get { throw new NotImplementedException (); }
+               }
+
+               public string Source {
+                       [MonoTODO]
+                       get { throw new NotImplementedException (); }
+               }
+
+               #endregion // Properties
+
+               #region Methods
+
+               [MonoTODO]
+               public override string ToString ()
+               {
+                       throw new NotImplementedException ();
+               }
+
+               #endregion // Methods
        }
 }