| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // System.Data.SqlRowUpdatingEventArgs.cs
- //
- // Author:
- // Rodrigo Moya ([email protected])
- // Daniel Morgan ([email protected])
- //
- // (C) Ximian, Inc 2002
- //
- using System;
- namespace System.Data {
- public sealed class StateChangeEventArgs : EventArgs {
- [MonoTODO]
- public StateChangeEventArgs(ConnectionState originalState,
- ConnectionState currentState) {
- // FIXME: do me
- }
- [MonoTODO]
- public ConnectionState CurrentState {
- get {
- // FIXME: do me
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public ConnectionState OriginalState {
- get {
- // FIXME: do me
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- ~StateChangeEventArgs() {
- // FIXME: do me
- }
- }
- }
|