| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- //
- // System.Data.OleDb.OleDbInfoMessageEventArgs
- //
- // Authors:
- // Rodrigo Moya ([email protected])
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Rodrigo Moya, 2002
- // Copyright (C) Tim Coleman, 2002
- //
- using System.Data;
- using System.Data.Common;
- namespace System.Data.OleDb
- {
- public sealed class OleDbInfoMessageEventArgs : EventArgs
- {
- #region Constructors
- internal OleDbInfoMessageEventArgs() {
- }
- #endregion Constructors
- #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
- }
- }
|