DbConnectionPoolCounters.cs 643 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // System.Data.ProviderBase.DbConnectionPoolCounters
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. using System.Data.Common;
  11. namespace System.Data.ProviderBase {
  12. public abstract class DbConnectionPoolCounters
  13. {
  14. #region Constructors
  15. [MonoTODO]
  16. protected DbConnectionPoolCounters ()
  17. {
  18. }
  19. #endregion // Constructors
  20. #region Methods
  21. [MonoTODO]
  22. public virtual void Dispose ()
  23. {
  24. throw new NotImplementedException ();
  25. }
  26. [MonoTODO]
  27. protected void InitCounters ()
  28. {
  29. throw new NotImplementedException ();
  30. }
  31. #endregion // Methods
  32. }
  33. }
  34. #endif