DbProviderConfigurationHandler.cs 658 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // System.Data.Common.DbProviderConfigurationHandler.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. using System.Configuration;
  11. using System.Xml;
  12. namespace System.Data.Common {
  13. public class DbProviderConfigurationHandler : IConfigurationSectionHandler
  14. {
  15. #region Constructors
  16. [MonoTODO]
  17. public DbProviderConfigurationHandler ()
  18. {
  19. }
  20. #endregion // Constructors
  21. #region Methods
  22. [MonoTODO]
  23. public virtual object Create (object parent, object configContext, XmlNode section)
  24. {
  25. throw new NotImplementedException ();
  26. }
  27. #endregion // Methods
  28. }
  29. }
  30. #endif // NET_1_2