| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // System.Data.Common.DbProviderFactoriesConfigurationHandler.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- using System.Configuration;
- using System.Xml;
- namespace System.Data.Common {
- public class DbProviderFactoriesConfigurationHandler : IConfigurationSectionHandler
- {
- #region Constructors
- [MonoTODO]
- public DbProviderFactoriesConfigurationHandler ()
- {
- }
- #endregion // Constructors
- #region Methods
- [MonoTODO]
- public virtual object Create (object parent, object configContext, XmlNode section)
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
- #endif // NET_1_2
|