| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // 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
- {
- [MonoTODO]
- public SqlErrorCollection Errors {
- get {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public string Message
- {
- get {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public string Source {
- get {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public override string ToString() {
- // representation of InfoMessage event
- }
- [MonoTODO]
- ~SqlInfoMessageEventArgs() {
- // FIXME: destructor needs to release resources
- }
- }
- }
|