| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // System.Data.SqlClient.SqlInfoMessageEventArgs.cs
- //
- // Author:
- // Rodrigo Moya ([email protected])
- // Daniel Morgan ([email protected])
- //
- // (C) Ximian, Inc 2002
- //
- using System;
- using System.Data;
- namespace System.Data.SqlClient {
- public sealed class SqlInfoMessageEventArgs : EventArgs
- {
- #region Properties
- [MonoTODO]
- public SqlErrorCollection Errors {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public string Message {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public string Source {
- get { throw new NotImplementedException (); }
- }
- #endregion // Properties
- #region Methods
- [MonoTODO]
- public override string ToString()
- {
- // representation of InfoMessage event
- return "'ToString() for SqlInfoMessageEventArgs Not Implemented'";
- }
- #endregion // Methods
- }
- }
|